body {
    font-family: 'Outfit', sans-serif;
    background-color: #000;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.tracking-wide {
    letter-spacing: 2px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.8);
    transform: translateY(-2px);
}

.max-w-md {
    max-width: 600px;
}

/* 3D Hero Section */
.hero-section {
    height: 100vh;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000 100%);
    perspective: 1000px;
}

.cube-container {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -100px;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
    opacity: 0.15;
    z-index: 0;
}

.cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.1);
    border: 2px solid rgba(13, 110, 253, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(13, 110, 253, 0.8);
    box-shadow: 0 0 40px rgba(13, 110, 253, 0.2) inset;
}

.front  { transform: translateZ(100px); }
.back   { transform: rotateY(180deg) translateZ(100px); }
.right  { transform: rotateY(90deg) translateZ(100px); }
.left   { transform: rotateY(-90deg) translateZ(100px); }
.top    { transform: rotateX(90deg) translateZ(100px); }
.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotate {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* Cards */
.founder-card {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    transition: transform 0.3s;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.avatar-lg {
    width: 120px;
    height: 120px;
}

.feature-card {
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(13, 110, 253, 0.5);
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.pricing-card {
    border: 1px solid rgba(13, 110, 253, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
}

/* -------------------------------------------------------------
   New Features & 3D Styling Enhancements
   ------------------------------------------------------------- */

/* ThreeJS Canvas Background */
#three-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 3D Tilt Card Base class */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

/* Glassmorphism System */
.glass-panel {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-panel:hover {
    border-color: rgba(13, 110, 253, 0.4);
}

/* AI Chat Console Simulator Styling */
.console-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(13, 110, 253, 0.25);
    overflow: hidden;
}

.console-header {
    background: #0f1016;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-red { background-color: #ff5f56; width: 12px; height: 12px; }
.dot-yellow { background-color: #ffbd2e; width: 12px; height: 12px; }
.dot-green { background-color: #27c93f; width: 12px; height: 12px; }

.console-body {
    background: #07080b;
    height: 320px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 110, 253, 0.3) transparent;
}

.console-body::-webkit-scrollbar {
    width: 6px;
}
.console-body::-webkit-scrollbar-thumb {
    background-color: rgba(13, 110, 253, 0.3);
    border-radius: 3px;
}

.console-message {
    border-left: 3px solid transparent;
    padding-left: 10px;
    margin-bottom: 12px;
}

.console-message.user {
    border-color: #0dcaf0;
}

.console-message.assistant {
    border-color: #0d6efd;
}

.console-role {
    font-weight: bold;
    color: #0dcaf0;
    margin-right: 8px;
}

.console-message.assistant .console-role {
    color: #0d6efd;
}

.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: #0d6efd;
    margin-left: 4px;
    animation: blink 0.8s infinite;
    vertical-align: middle;
}

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

.console-prompts-bar {
    background: #0a0b0f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.console-prompt-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
}

.console-prompt-btn:hover, .console-prompt-btn.active {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.5);
    color: #fff;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}

/* Models Grid tags */
.model-badge {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.25);
    color: #0dcaf0;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 20px;
}

.model-speed-indicator {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

/* Statistics widgets */
.stat-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card {
    border-top: 3px solid rgba(13, 110, 253, 0.4);
}

.stat-card.cyan {
    border-top-color: rgba(13, 202, 240, 0.4);
}

.stat-card.green {
    border-top-color: rgba(25, 135, 84, 0.4);
}

/* Form Styles */
.form-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff !important;
    transition: all 0.3s ease;
}

.form-glass:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
    outline: none;
}

.contact-info-list i {
    color: #0dcaf0;
}

.email-glow-card {
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.15) 0%, rgba(0,0,0,0) 70%);
}

/* -------------------------------------------------------------
   Mobile Responsiveness Enhancements
   ------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .display-3 {
        font-size: 3rem;
    }
    .cube-container {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.2rem;
    }
    .display-6 {
        font-size: 1.8rem;
    }
    .stat-value {
        font-size: 2rem;
    }
    .console-body {
        height: 250px;
    }
    .console-prompt-btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.75rem !important;
    }
    .feature-card {
        padding: 1.5rem !important;
    }
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

