/* ==========================================
   codeGener8 Landing Page
   Lighter Dark Theme with Blue Accent (#1f86ff)
   ========================================== */

:root {
    --primary: #1f86ff;
    --primary-light: #4d9eff;
    --primary-dark: #0066e0;
    --bg-dark: #05050a;
    --bg-card: #25253a;
    --bg-card-hover: #2f2f45;
    --text: #ffffff;
    --text-muted: #a0aec0;
    --text-dim: #718096;
    --border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #1f86ff 0%, #4d9eff 50%, #7db3ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background - Very Dark Theme */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(31, 134, 255, 0.20) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 158, 255, 0.18) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 18px;
}

/* Desktop: show long logo, hide square logo */
.nav-logo .logo-desktop {
    display: block;
}

.nav-logo .logo-mobile {
    display: none;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links .btn-primary {
    color: white;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    margin-left: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid var(--border);
    padding: 3px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    background: transparent;
    color: var(--text-muted);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    background: var(--gradient);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(30, 115, 190, 0.3);
}

/* Chat attention indicator */
.chat-attention {
    position: fixed;
    bottom: 90px;
    right: 14px;
    z-index: 99;
    pointer-events: none;
    animation: chatAttentionFadeIn 0.5s ease 2s forwards;
    opacity: 0;
}

.chat-attention-bubble {
    background: var(--gradient);
    color: white;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.4);
    position: relative;
    animation: chatBubbleBounce 2s ease-in-out infinite;
}

.chat-attention-arrow {
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary);
}

.chat-attention-ping {
    position: absolute;
    bottom: -70px;
    right: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: chatPing 2s ease-out infinite;
}

@keyframes chatAttentionFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes chatBubbleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes chatPing {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chat-attention.hidden {
    display: none;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 115, 190, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(30, 115, 190, 0.15);
    border: 1px solid rgba(30, 115, 190, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Chat Mockup */
.chat-mockup {
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.chat-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(60px);
    opacity: 0.25;
    border-radius: 30px;
    z-index: 0;
}

.chat-window {
    width: 360px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.chat-status {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
}

.chat-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.chat-actions {
    display: flex;
    gap: 8px;
}

.chat-btn {
    width: 20px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 4px;
}

.chat-messages {
    padding: 16px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
}

.msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.msg-bot {
    background: #f1f5f9;
    color: #334155;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.msg-user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.msg.typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
}

.msg.typing span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input {
    display: flex;
    padding: 12px;
    border-top: 1px solid #e5e7eb;
    gap: 8px;
    background: #fff;
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #64748b;
    background: #f8fafc;
}

.send-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.chat-powered {
    text-align: center;
    padding: 8px;
    font-size: 11px;
    color: #94a3b8;
    background: #f8fafc;
}

.chat-launcher {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(30, 115, 190, 0.4);
    z-index: 2;
    animation: pulse 2s infinite;
}

.chat-launcher img {
    width: 76px;
    height: 76px;
    border-radius: 8px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(30, 115, 190, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(30, 115, 190, 0.6); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(30, 115, 190, 0.1);
    border: 1px solid rgba(30, 115, 190, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Features Grid */
.features {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 115, 190, 0.03) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(30, 115, 190, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    stroke: white;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }

.why-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(30, 115, 190, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon svg {
    stroke: white;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* How It Works */
.how-it-works {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(3) { transition-delay: 0.1s; }
.step:nth-child(5) { transition-delay: 0.2s; }

.step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(30, 115, 190, 0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.step-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    margin-top: 32px;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-wrapper.in-view {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    padding-right: 40px;
}

.contact-info .section-badge {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.contact-feature svg {
    stroke: var(--primary-light);
    flex-shrink: 0;
}

.contact-quick-call {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-quick-call-label {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-quick-call-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-quick-call-number svg {
    stroke: var(--primary-light);
    flex-shrink: 0;
}

.contact-quick-call-number:hover {
    color: var(--primary-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text);
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 115, 190, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message svg {
    stroke: var(--primary-light);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-muted);
}

/* Form Error/Success Messages */
.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
}

.form-success strong {
    display: block;
    margin-bottom: 4px;
}

/* Ecosystem Section */
.ecosystem {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 115, 190, 0.03) 50%, transparent 100%);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ecosystem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecosystem-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.ecosystem-card:hover .ecosystem-link {
    color: var(--primary-light);
}

.ecosystem-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ecosystem-icon svg {
    stroke: white;
}

.ecosystem-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ecosystem-test {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 134, 20, 0.3);
}

.ecosystem-card:hover .ecosystem-test {
    background: rgba(255, 134, 20, 0.1);
    border-color: rgba(255, 134, 20, 0.5);
}

.ecosystem-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(30, 115, 190, 0.3);
}

.ecosystem-card:hover .ecosystem-code {
    background: rgba(30, 115, 190, 0.1);
    border-color: rgba(30, 115, 190, 0.5);
}

.ecosystem-health {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 43, 32, 0.3);
}

.ecosystem-card:hover .ecosystem-health {
    background: rgba(224, 43, 32, 0.1);
    border-color: rgba(224, 43, 32, 0.5);
}

.ecosystem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ecosystem-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.ecosystem-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    transition: color 0.2s;
}

@media (max-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    .ecosystem-card.ecosystem-active {
        order: -1;
    }
}

/* Footer */
.footer {
    padding: 48px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    background: rgba(5, 5, 10, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-desc {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a,
.footer-contact span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    color: var(--text-dim);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--primary-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-marquee-wrap {
    padding: 0 0 50px;
    text-align: center;
    overflow: hidden;
}

.footer-marquee-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.footer-marquee {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.footer-marquee-track {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    will-change: transform;
}

.footer-marquee-track img {
    height: 30px;
    width: auto;
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.footer-marquee-track img:hover {
    opacity: 0.85;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 13px;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Use square logo on mobile */
    .nav-logo .logo-desktop {
        display: none !important;
    }

    .nav-logo .logo-mobile {
        display: block !important;
        height: 36px !important;
    }

    .nav-links a:not(.btn):not(.lang-btn) {
        display: none;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links .btn-sm {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
        border-radius: 8px;
    }

    .nav-links .btn-primary.btn-sm {
        padding: 8px 12px;
    }

    .nav-links .btn-outline.btn-sm {
        padding: 8px 12px;
    }

    .lang-switcher {
        margin-left: 4px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 32px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 20px;
    }

    .chat-mockup {
        transform: none;
    }

    .chat-window {
        width: 300px;
    }

    .chat-messages {
        min-height: 200px;
        padding: 12px;
        gap: 10px;
    }

    .msg {
        font-size: 12px;
        padding: 8px 12px;
    }

    .chat-launcher {
        width: 48px;
        height: 48px;
        bottom: -15px;
        right: -15px;
    }

    .chat-launcher img {
        width: 75px;
        height: 75px;
    }

    .screenshot-wrapper {
        max-width: 320px;
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        margin: 0 -24px;
        padding: 8px 24px 20px;
        scroll-padding: 0 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .features-grid::-webkit-scrollbar { display: none; }
    .features-grid .feature-card {
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .features-grid .feature-card:hover {
        transform: none;
    }

    .scroll-track {
        height: 3px;
        background: rgba(255,255,255,0.1);
        border-radius: 2px;
        position: relative;
        margin-top: 12px;
        overflow: hidden;
    }
    .scroll-track .scroll-thumb {
        position: absolute;
        top: 0; left: 0;
        height: 100%;
        background: var(--primary);
        border-radius: 2px;
        transition: transform 0.15s ease-out;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-features {
        align-items: center;
    }

    .contact-quick-call {
        align-items: center;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-desc {
        max-width: 280px;
        margin: 0 auto;
        font-size: 13px;
    }
    .footer-marquee-track img {
        height: 22px;
    }
    .footer-marquee-track {
        gap: 48px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 100px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Gener8 Chatbot Widget Overrides */
.g8-textarea,
.g8-input {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    outline: none !important;
}

.g8-textarea:focus,
.g8-input:focus {
    border-color: var(--primary) !important;
    outline: none !important;
    box-shadow: none !important;
}

.g8-textarea::placeholder,
.g8-input::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ==========================================
   Auth Modal
   ========================================== */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.auth-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--text);
}

/* Auth modal header */
#loginForm h2,
#registerForm h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

#loginFormEl,
#registerFormEl {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.auth-tab.active {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.auth-field input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s;
}

.auth-field input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 115, 190, 0.05);
}

.auth-field input::placeholder {
    color: var(--text-dim);
}

.auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
}

.auth-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
}

.auth-switch {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.auth-switch span {
    margin-right: 4px;
}

.auth-switch a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* User nav (logged in state) */
#user-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

#user-nav .user-name {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

#logout-btn {
    padding: 6px 12px;
    font-size: 12px;
}

/* ==========================================
   Dashboard Section
   ========================================== */
.dashboard {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.dashboard-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dashboard-header p,
.dashboard-welcome {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(30, 115, 190, 0.3);
}

.dashboard-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* Dashboard Sections */
.dashboard-section {
    margin-top: 40px;
}

.dashboard-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Assistants List */
.assistants-section,
.companies-section {
    margin-top: 40px;
}

.assistants-section h3,
.companies-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.assistants-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.assistant-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.assistant-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(30, 115, 190, 0.3);
}

.assistant-card .assistant-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.assistant-card .assistant-company {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.assistant-card .assistant-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.assistant-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.assistant-status.inactive {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* Companies List */
.companies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.company-badge:hover {
    background: var(--bg-card-hover);
    border-color: rgba(30, 115, 190, 0.3);
}

.company-badge .company-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Assistant Card Actions */
.assistant-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.assistant-info {
    min-width: 150px;
}

.assistant-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.assistant-model {
    font-size: 12px;
    color: var(--text-dim);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 6px;
}

.get-snippet-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px !important;
    padding: 6px 12px !important;
}

.get-snippet-btn svg {
    flex-shrink: 0;
}

/* Assistant Domain Input */
.assistant-domain {
    flex: 1;
    min-width: 200px;
}

.assistant-domain label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.domain-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.domain-input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.domain-input:focus {
    outline: none;
    border-color: var(--primary);
}

.domain-input::placeholder {
    color: var(--text-dim);
}

.save-domain-btn {
    white-space: nowrap;
}

.domain-status {
    font-size: 12px;
    margin-top: 4px;
    min-height: 18px;
}

.domain-status.domain-success {
    color: #22c55e;
}

.domain-status.domain-error {
    color: #ef4444;
}

/* Dashboard Contact Card */
.dashboard-contact {
    margin-top: 60px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 32px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    stroke: white;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.contact-card .btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Snippet Modal Box */
.snippet-box {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    margin-top: 16px;
}

.snippet-box pre {
    margin: 0;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-all;
    padding-right: 70px;
}

.snippet-copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.snippet-copy-btn:hover {
    background: var(--primary-light);
}

.snippet-copied {
    text-align: center;
    color: #4ade80;
    font-size: 13px;
    margin-top: 12px;
}

/* Responsive assistant cards */
@media (max-width: 768px) {
    .assistant-card {
        flex-direction: column;
        align-items: stretch;
    }

    .assistant-info {
        margin-bottom: 12px;
    }

    .assistant-domain {
        width: 100%;
        margin-bottom: 12px;
    }

    .assistant-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .contact-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    stroke: var(--text-dim);
    margin-bottom: 16px;
}

.empty-state h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
}

/* Loading State */
.dashboard-loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.dashboard-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard {
        padding: 100px 0 60px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header h2 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 28px;
    }

    .assistants-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-links .btn-sm {
        padding: 6px 10px;
        font-size: 11px;
    }

    .nav-logo span {
        display: none;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 10px;
        min-width: 28px;
    }

    .auth-modal-content {
        padding: 24px 20px;
        margin: 16px;
        max-width: calc(100% - 32px);
    }

    .auth-modal-close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    #loginForm h2,
    #registerForm h2 {
        font-size: 20px;
    }

    .auth-subtitle {
        font-size: 13px;
    }

    .auth-field input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .auth-tabs {
        flex-direction: column;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* ==========================================
   Code Mockup (for homepage)
   ========================================== */
.code-mockup {
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.code-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.code-window {
    width: 480px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.code-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #2d2d2d;
    border-bottom: 1px solid #3d3d3d;
    gap: 8px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-title {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    margin-left: auto;
    font-family: 'Monaco', 'Consolas', monospace;
}

.code-content {
    padding: 20px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 4px;
}

.code-comment {
    color: #6a9955;
}

.code-keyword {
    color: #569cd6;
}

.code-var {
    color: #9cdcfe;
}

.code-function {
    color: #dcdcaa;
}

.code-property {
    color: #9cdcfe;
}

.code-value {
    color: #569cd6;
}

.code-string {
    color: #ce9178;
}

@media (max-width: 768px) {
    .code-window {
        width: 320px;
    }

    .code-content {
        padding: 16px;
        font-size: 11px;
    }
}

/* ==========================================
   Services Section (homepage)
   ========================================== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 115, 190, 0.03) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(30, 115, 190, 0.3);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: rgba(30, 115, 190, 0.4);
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.05) 0%, var(--bg-card) 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    stroke: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    transition: color 0.2s;
}

.service-card:hover .service-link {
    color: var(--text);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Ecosystem Active State
   ========================================== */
.ecosystem-card.ecosystem-active {
    border-color: rgba(31, 134, 255, 0.6);
    background: rgba(37, 37, 58, 0.9);
}

.ecosystem-card.ecosystem-active .ecosystem-link {
    color: var(--primary-light);
    font-weight: 600;
}

.ecosystem-card.ecosystem-active:hover {
    transform: translateY(0);
    cursor: default;
}
