/* PERSONNN TECH VARIANT - PersonnnOS/Technical Focus */
/* Extends base styles.css with tech-specific overrides */

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation Base Styles */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-icon-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    background: rgba(0, 122, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    color: #6e6e73;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-btn.active {
    background: #007AFF;
    color: #FFFFFF;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Hero Base Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    width: 100%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 14px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(0, 122, 255, 0.3);
    color: #007AFF;
}

.btn-secondary:hover {
    background: rgba(0, 122, 255, 0.1);
    transform: translateY(-2px);
}

/* Preview Card */
.hero-preview {
    max-width: 600px;
    margin: 0 auto;
}

.preview-card {
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d1d6;
}

.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #28ca42; }

.card-title {
    font-weight: 600;
    font-size: 14px;
}

.soul-status {
    margin-bottom: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 122, 255, 0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5856D6;
}

.soul-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 122, 255, 0.05);
    border-radius: 12px;
}

.soul-avatar {
    font-size: 2rem;
}

.soul-info {
    flex: 1;
}

.soul-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.soul-stage {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

/* Product Section Styles */
.productos-section, .casos-section, .final-cta {
    background: #ffffff;
    color: #1d1d1f;
}

.productos-header, .casos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.productos-title, .casos-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.productos-subtitle, .casos-subtitle {
    font-size: 1.2rem;
    color: #6e6e73;
    max-width: 800px;
    margin: 0 auto;
}

/* PersonnnOS Core */
.personnnos-core {
    text-align: center;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 20px;
    position: relative;
}

.core-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.personnnos-core h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.personnnos-core h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6e6e73;
    margin-bottom: 1.5rem;
}

.personnnos-core p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Core Features */
.core-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.core-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.available {
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
    border: 1px solid rgba(0, 122, 255, 0.3);
}

.badge.b2b {
    background: rgba(88, 86, 214, 0.2);
    color: #5856D6;
    border: 1px solid rgba(88, 86, 214, 0.3);
}

/* Product Grid */
.productos-category {
    margin: 4rem 0;
}

.productos-category h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 2rem;
}

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

.producto-card {
    background: rgba(0, 122, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.2);
}

.producto-card.featured {
    border: 2px solid #007AFF;
    position: relative;
}

.producto-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #007AFF;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

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

.producto-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.producto-card p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.producto-status {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.producto-status.available {
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
}

/* Cases Grid */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.caso-card {
    background: rgba(0, 122, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    transition: all 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.2);
}

.caso-avatar {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.caso-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.caso-card p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.caso-result {
    background: rgba(88, 86, 214, 0.1);
    border: 1px solid rgba(88, 86, 214, 0.3);
    padding: 1rem;
    border-radius: 12px;
    color: #5856D6;
    font-weight: 600;
    font-size: 14px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f2f2f7 0%, #ffffff 100%);
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #6e6e73;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-content {
        padding: 1rem;
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .productos-grid, .casos-grid {
        grid-template-columns: 1fr;
    }
}

:root[data-theme="tech"] {
    /* SpaceX/Tesla Inspired White Theme */
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #666666;
    --tech-white: #ffffff;
    --tech-light-gray: #f8f9fa;
    --tech-gray: #6c757d;
    --tech-dark-gray: #343a40;

    /* Elegant Gradients */
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-secondary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-accent: linear-gradient(135deg, #000000 0%, #333333 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    --gradient-tech: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);

    /* Clean Surfaces */
    --surface-tech: rgba(0, 0, 0, 0.02);
    --surface-code: rgba(0, 0, 0, 0.03);
    --surface-terminal: rgba(0, 0, 0, 0.04);

    /* Subtle Shadows */
    --shadow-tech: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-code: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-terminal: 0 6px 24px rgba(0, 0, 0, 0.1);
    --shadow-elegant: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/* Hero Section - SpaceX/Tesla Inspired */
.hero[data-theme="tech"] {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero[data-theme="tech"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.4;
    animation: elegantGrid 30s linear infinite;
}

@keyframes elegantGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero[data-theme="tech"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    animation: elegantPulse 12s ease-in-out infinite alternate;
}

@keyframes elegantPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Badge Styling */
.hero-badge[data-theme="tech"] {
    background: var(--tech-white);
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Title Styling */
.hero-title[data-theme="tech"] {
    color: var(--primary-color);
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.03em;
}

.title-highlight[data-theme="tech"] {
    color: var(--primary-color);
    font-weight: 600;
}

/* Button Styling */
.btn-primary[data-theme="tech"] {
    background: var(--primary-color);
    color: var(--tech-white);
    box-shadow: var(--shadow-elegant);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary[data-theme="tech"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
}

/* Preview Card */
.preview-card[data-theme="tech"] {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--tech-white);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-tech);
}

/* Status Elements */
.status-dot[data-theme="tech"] {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
}

.soul-avatar[data-theme="tech"] {
    color: var(--primary-color);
    font-size: 2rem;
    font-family: 'SF Mono', monospace;
    position: relative;
}

.soul-avatar[data-theme="tech"]::after {
    content: '_';
    animation: techBlink 1s infinite;
    color: var(--accent-color);
}

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

/* PersonnnOS Core Section */
.personnnos-core[data-theme="tech"] {
    background: var(--surface-tech);
    border: 2px solid rgba(0, 122, 255, 0.2);
    position: relative;
}

.core-icon[data-theme="tech"] {
    filter: hue-rotate(200deg) saturate(1.3);
}

/* Badge Dot Animation */
.badge-dot.pulsing[data-theme="tech"] {
    background: var(--accent-color);
    animation: techPulse 1.5s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Ecosystem Paths - Tech Focused */
.ecosystem-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ecosystem-path {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.ecosystem-path:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-tech);
}

.ecosystem-path.consumer {
    border-left: 4px solid var(--accent-color);
}

.ecosystem-path.business {
    border-left: 4px solid var(--secondary-color);
}

.path-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.path-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.path-badge {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.path-badge.b2c {
    background: rgba(0, 153, 255, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.path-badge.b2b {
    background: rgba(88, 86, 214, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(88, 86, 214, 0.3);
}

.ecosystem-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Ecosystem Items - Tech Style */
.ecosystem-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 122, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.ecosystem-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-code);
}

.ecosystem-item.main {
    border: 2px solid var(--primary-color);
    background: var(--surface-tech);
}

.item-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.ecosystem-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.75rem;
}

.ecosystem-item p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.item-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.item-status.free {
    background: rgba(52, 199, 89, 0.2);
    color: #34C759;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.item-status.available {
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
    border: 1px solid rgba(0, 122, 255, 0.3);
}

.item-status.beta {
    background: rgba(255, 149, 0, 0.2);
    color: #FF9500;
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.item-status.opensource {
    background: rgba(88, 86, 214, 0.2);
    color: #5856D6;
    border: 1px solid rgba(88, 86, 214, 0.3);
}

.item-status.enterprise {
    background: rgba(175, 82, 222, 0.2);
    color: #AF52DE;
    border: 1px solid rgba(175, 82, 222, 0.3);
}

.item-status.coming {
    background: rgba(142, 142, 147, 0.2);
    color: #8E8E93;
    border: 1px solid rgba(142, 142, 147, 0.3);
}

.item-status.saas {
    background: rgba(255, 59, 48, 0.2);
    color: #FF3B30;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.tech-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tech-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
}

/* Code-like Elements */
.code-block {
    background: var(--surface-terminal);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.9rem;
    color: var(--gray-700);
    border: 1px solid rgba(0, 153, 255, 0.2);
    margin: 1rem 0;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.line-number {
    color: var(--gray-400);
    margin-right: 1rem;
    min-width: 20px;
    font-size: 0.8rem;
}

.code-content {
    color: var(--gray-800);
}

.code-keyword {
    color: var(--secondary-color);
    font-weight: 600;
}

.code-string {
    color: var(--primary-color);
}

.code-comment {
    color: var(--gray-500);
    font-style: italic;
}

/* API Documentation Style */
.api-endpoint {
    background: var(--surface-code);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-color);
    font-family: 'SF Mono', monospace;
}

.endpoint-method {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.endpoint-url {
    color: var(--gray-700);
    font-weight: 500;
}

/* Technical Specifications */
.tech-spec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.spec-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-tech);
}

.spec-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'SF Mono', monospace;
}

.spec-value {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Feature Pills - Tech Style */
.feature-pill[data-theme="tech"] {
    font-family: 'SF Mono', monospace;
    background: var(--surface-tech);
    border: 1px solid rgba(0, 122, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-pill[data-theme="tech"]:hover {
    background: rgba(0, 122, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-code);
}

/* Navigation Updates */
.nav-cta[data-theme="tech"] {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-tech);
    font-family: 'SF Pro Display', sans-serif;
}

.nav-cta[data-theme="tech"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

/* Terminal-like Interface */
.terminal-interface {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'SF Mono', monospace;
    color: #0099FF;
    margin: 1rem 0;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 153, 255, 0.2);
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #28ca42; }

.terminal-title {
    color: #8e8e93;
    font-size: 0.9rem;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.terminal-prompt {
    color: #007aff;
    margin-right: 0.5rem;
}

.terminal-command {
    color: #0099FF;
}

.terminal-output {
    color: #ffffff;
    margin-left: 1rem;
}

/* System Status Indicators */
.system-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.status-indicator {
    background: var(--surface-terminal);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(0, 153, 255, 0.2);
    text-align: center;
}

.status-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.status-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.status-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'SF Mono', monospace;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .ecosystem-paths {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ecosystem-path {
        padding: 1.5rem;
    }
    
    .path-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .path-header h3 {
        font-size: 1.3rem;
    }
    
    .ecosystem-item {
        padding: 1.25rem;
    }
    
    .ecosystem-item h4 {
        font-size: 1.2rem;
    }
    
    .tech-spec {
        grid-template-columns: 1fr;
    }
    
    .system-status {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 2rem !important;
    }
    
    .title-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .personnnos-core {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .personnnos-core h2 {
        font-size: 2rem;
    }
    
    .personnnos-core h3 {
        font-size: 1.3rem;
    }
    
    .core-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-pill {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 1.5rem !important;
        margin-top: 8px !important;
    }
    
    .title-subtitle {
        font-size: 1rem !important;
        margin-top: 10px !important;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .ecosystem-path {
        padding: 1rem;
    }
    
    .ecosystem-item {
        padding: 1rem;
    }
    
    .personnnos-core {
        padding: 1.5rem 1rem;
    }
    
    .personnnos-core h2 {
        font-size: 1.8rem;
    }
    
    .core-features {
        gap: 0.75rem;
    }
    
    .feature-pill {
        padding: 0.6rem 1.2rem;
        font-size: 13px;
    }
}

/* Micro-interactions */
.ecosystem-item[data-theme="tech"] .item-icon {
    transition: transform 0.3s ease;
}

.ecosystem-item[data-theme="tech"]:hover .item-icon {
    transform: scale(1.05);
}

/* Data Flow Animation */
.data-flow {
    position: relative;
    overflow: hidden;
}

.data-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.2), transparent);
    animation: dataFlow 2s ease-in-out infinite;
}

@keyframes dataFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Loading States */
.tech-loading {
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: techShimmer 1.5s infinite;
}

@keyframes techShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .soul-avatar[data-theme="tech"]::after,
    .hero[data-theme="tech"]::before,
    .data-flow::before {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .ecosystem-path[data-theme="tech"] {
        border: 2px solid var(--primary-color);
    }
    
    .spec-card {
        border: 2px solid var(--secondary-color);
    }
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
    :root[data-theme="tech"] {
        --surface-tech: rgba(0, 122, 255, 0.1);
        --surface-code: rgba(88, 86, 214, 0.1);
        --surface-terminal: rgba(0, 153, 255, 0.1);
    }

    .terminal-interface {
        background: #000000;
        border-color: rgba(0, 153, 255, 0.5);
    }
}
/* Addi
tional Tech Enhancements */

/* Glassmorphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Code Syntax Highlighting */
.code-syntax {
    font-family: 'JetBrains Mono', monospace;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
}

.code-syntax .keyword { color: #ff7b72; }
.code-syntax .string { color: #a5d6ff; }
.code-syntax .comment { color: #8b949e; }
.code-syntax .function { color: #d2a8ff; }
.code-syntax .variable { color: #ffa657; }

/* API Response Cards */
.api-response {
    background: var(--surface-terminal);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.response-header {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-body {
    color: #6e6e73;
    white-space: pre-wrap;
}

/* Tech Metrics */
.tech-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.metric-card {
    background: var(--surface-tech);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-tech);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #6e6e73;
    font-weight: 500;
}

/* Interactive Elements */
.interactive-demo {
    background: var(--surface-code);
    border: 2px solid rgba(88, 86, 214, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.demo-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.demo-status {
    background: rgba(52, 199, 89, 0.2);
    color: #34C759;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Floating Action Buttons */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-tech);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

/* Progress Indicators */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Notification Badges */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF3B30;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading Animations */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 122, 255, 0.2);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Tooltip Styles */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse-tech 2s ease-in-out infinite;
}

@keyframes pulse-tech {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Slide In Animations */
.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-item:focus,
.tech-cta:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Live Demo Modal Styles */
.live-demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.demo-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10002;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.demo-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.demo-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--tech-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-close:hover {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
}

.demo-body {
    padding: 2rem;
}

.demo-terminal {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 153, 255, 0.2);
}

.terminal-title {
    color: #8e8e93;
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-content {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    color: #00ff00;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 300px;
    overflow-y: auto;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.terminal-prompt {
    color: #0099ff;
    font-weight: 600;
}

.terminal-command {
    color: #ffffff;
    word-break: break-all;
}

.terminal-response {
    color: #00ff88;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 6px;
    white-space: pre-wrap;
    word-break: break-all;
}

.demo-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.demo-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.demo-btn:active {
    transform: translateY(0);
}

/* API Playground Modal Styles */
.api-playground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playground-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.playground-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10003;
}

.playground-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.playground-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.playground-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--tech-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playground-close:hover {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
}

.playground-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.playground-editor {
    flex: 1;
}

.code-editor {
    width: 100%;
    min-height: 200px;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid rgba(0, 153, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: vertical;
}

.code-editor:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.playground-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.run-code-btn, .copy-code-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.run-code-btn:hover, .copy-code-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.copy-code-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.copy-code-btn:hover {
    background: var(--primary-color);
    color: white;
}

.playground-output {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.output-header {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.output-content {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    min-height: 50px;
}

/* API Documentation Modal Styles */
.api-documentation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.docs-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10004;
    display: flex;
    flex-direction: column;
}

.docs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.docs-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.docs-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--tech-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs-close:hover {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
}

.docs-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.docs-nav {
    width: 200px;
    background: #f8f9fa;
    padding: 1rem;
    border-right: 1px solid rgba(0, 122, 255, 0.1);
    overflow-y: auto;
}

.nav-item {
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--tech-gray);
    transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    background: var(--primary-color);
    color: white;
}

.docs-content-area {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.docs-section {
    display: none;
}

.docs-section.active {
    display: block;
}

.docs-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.docs-section pre {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 1rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-content, .playground-content, .docs-content {
        width: 95%;
        max-height: 95vh;
    }

    .demo-header, .playground-header, .docs-header {
        padding: 1.5rem;
    }

    .demo-body, .playground-body {
        padding: 1.5rem;
    }

    .demo-controls, .playground-controls {
        flex-direction: column;
    }

    .demo-btn, .run-code-btn, .copy-code-btn {
        width: 100%;
    }

    .docs-body {
        flex-direction: column;
    }

    .docs-nav {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 1rem;
    }

    .nav-item {
        white-space: nowrap;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .docs-content-area {
        padding: 1.5rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .ecosystem-item {
        border: 2px solid var(--primary-color);
    }

    .item-status {
        border-width: 2px;
    }

    .preview-card {
        border: 3px solid var(--primary-color);
    }

    .demo-content, .playground-content, .docs-content {
        border: 3px solid var(--primary-color);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .pulse-animation,
    .loading-spinner,
    .slide-in-left,
    .slide-in-right {
        animation: none;
    }
    
    .hover-lift:hover {
        transform: none;
    }
}/*
 Enhanced Hero Styles */
.hero-main-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.title-highlight {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.title-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--tech-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--surface-tech);
    border-radius: 12px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--tech-gray);
    margin-top: 0.25rem;
}

/* Enhanced Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-tech);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: var(--surface-tech);
    color: var(--tech-gray);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.btn-tertiary:hover {
    background: rgba(0, 122, 255, 0.1);
    transform: translateY(-2px);
}

.btn-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.btn-large {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Enhanced Preview Card */
.preview-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-tech);
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 122, 255, 0.05);
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.card-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: var(--secondary-color);
}

/* Terminal Interface */
.terminal-interface {
    background: #1a1a1a;
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.terminal-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.terminal-prompt {
    color: #0099ff;
    margin-right: 0.5rem;
}

.terminal-command {
    color: #ffffff;
}

.terminal-output {
    margin-left: 1rem;
}

.output-line {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.output-line.success {
    color: #00ff88;
}

.output-line.info {
    color: #0099ff;
}

.terminal-cursor {
    display: inline-block;
    background: #00ff00;
    width: 8px;
    height: 16px;
    animation: blink 1s infinite;
}

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

/* Framework Section */
.framework-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--tech-gray);
    max-width: 800px;
    margin: 0 auto;
}

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

.arch-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.arch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-tech);
}

.arch-card.primary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, white 100%);
}

.arch-card.secondary {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.05) 0%, white 100%);
}

.arch-card.tertiary {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.05) 0%, white 100%);
}

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

.arch-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.arch-card p {
    color: var(--tech-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.arch-metrics {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Code Showcase */
.code-showcase {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-tech);
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 122, 255, 0.05);
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.code-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.code-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(0, 122, 255, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: white;
}

.code-content {
    position: relative;
}

.code-block {
    display: none;
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-x: auto;
}

.code-block.active {
    display: block;
}

.code-block pre {
    margin: 0;
    padding: 2rem;
}

/* API Section */
.api-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
}

.api-section .section-title {
    color: white;
}

.api-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.api-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.api-endpoints {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.endpoint-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.endpoint-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.endpoint-method {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    min-width: 60px;
    text-align: center;
}

.endpoint-method.post {
    background: #28a745;
    color: white;
}

.endpoint-method.get {
    background: #007bff;
    color: white;
}

.endpoint-method.put {
    background: #ffc107;
    color: black;
}

.endpoint-path {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    flex: 1;
}

.endpoint-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.feature-text {
    font-weight: 500;
}

/* Cases Section */
.cases-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.case-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-tech);
}

.case-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.case-card.featured::before {
    content: '⭐ Featured';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.case-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 12px;
}

.case-company h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.case-industry {
    font-size: 0.9rem;
    color: var(--tech-gray);
}

.case-metrics {
    margin-left: auto;
}

.metric-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-badge.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.metric-badge.growth {
    background: rgba(0, 122, 255, 0.2);
    color: var(--primary-color);
}

.metric-badge.revenue {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.case-content p {
    color: var(--tech-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.case-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-stats .stat {
    text-align: center;
}

.case-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
}

.case-stats .stat-label {
    font-size: 0.85rem;
    color: var(--tech-gray);
}

.testimonial-highlight {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    text-align: center;
    box-shadow: var(--shadow-tech);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.author-title {
    display: block;
    font-size: 0.9rem;
    color: var(--tech-gray);
}

/* Final CTA - Removed conflicting dark background */

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-accent);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content.large {
    max-width: 800px;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--tech-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid rgba(0, 122, 255, 0.1);
}

/* Demo Interface */
.demo-interface {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot.active {
    background: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.demo-metrics {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--tech-gray);
    font-family: 'JetBrains Mono', monospace;
}

.demo-chat {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.chat-message.user {
    background: rgba(0, 122, 255, 0.05);
    margin-left: 2rem;
}

.chat-message.ai {
    background: rgba(88, 86, 214, 0.05);
    margin-right: 2rem;
}

.message-author {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.message-text {
    color: var(--tech-gray);
    line-height: 1.5;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.demo-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid rgba(0, 122, 255, 0.1);
}

.demo-text-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
}

.demo-send-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

/* Get Started Options */
.get-started-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background: #f8f9fa;
    border: 2px solid rgba(0, 122, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-tech);
}

.option-card.featured {
    border-color: var(--primary-color);
    background: rgba(0, 122, 255, 0.05);
}

.option-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-header {
    margin-bottom: 1.5rem;
}

.option-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tech-gray);
    font-family: 'JetBrains Mono', monospace;
}

.option-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.option-features .feature {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--tech-gray);
}

.option-btn {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn.primary {
    background: var(--primary-color);
    color: white;
}

.option-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-tech);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #28a745;
}

.toast.error {
    border-left: 4px solid #dc3545;
}

.toast.info {
    border-left: 4px solid var(--primary-color);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.toast-message {
    color: var(--tech-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-tertiary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .architecture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .api-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .case-metrics {
        margin-left: 0;
    }
    
    .case-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .cta-stats {
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .get-started-options {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .demo-chat {
        max-height: 200px;
    }
    
    .chat-message.user {
        margin-left: 0.5rem;
    }
    
    .chat-message.ai {
        margin-right: 0.5rem;
    }
}

/* High Performance Optimizations */
.arch-card,
.case-card,
.option-card {
    will-change: transform;
    transform: translateZ(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .terminal-cursor,
    .typing-indicator span {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .arch-card,
    .case-card {
        border: 2px solid var(--primary-color);
    }
}/* Float
ing Scroll Capture Styles */
.floating-scroll-capture {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.95), rgba(0, 102, 255, 0.95));
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    max-width: 350px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-scroll-capture.show {
    transform: translateY(0);
    opacity: 1;
}

.capture-content {
    text-align: center;
    color: white;
}

.capture-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.capture-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.capture-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: white;
}

.email-capture-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.email-capture-form input[type="email"] {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 0.9rem;
}

.email-capture-form input[type="email"]:focus {
    outline: none;
    background: white;
}

.email-capture-form button {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-capture-form button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.capture-dismiss {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.capture-dismiss:hover {
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-scroll-capture {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .email-capture-form {
        flex-direction: column;
    }
    
    .email-capture-form button {
        width: 100%;
    }
}