/* Ryshe Website Styles */

/* CSS Variables */
:root {
    --dark-blue: #0A2540;
    --dark-blue-light: #0F3A5F;
    --teal: #00D4FF;
    --teal-dark: #00B8E6;
    --teal-light: #3DE3FF;
    --navy-deep: #061E34;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --accent-cyan: #0DCAF0;

    /* Legacy aliases for compatibility */
    --navy: var(--dark-blue);
    --navy-light: var(--dark-blue-light);
    --purple: var(--teal);
    --purple-dark: var(--teal-dark);
    --purple-light: var(--teal-light);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background: var(--white);
}

/* Remove all outlines and borders from layout elements */
main, section, div, header, footer {
    outline: none !important;
    border: none;
}

/* Specifically target Blazor/Telerik components */
[b-*], .blazor-error-boundary {
    outline: none !important;
    border: none;
}

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

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Typography */
h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; word-wrap: break-word; overflow-wrap: break-word; }
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; word-wrap: break-word; overflow-wrap: break-word; }
h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 1rem; word-wrap: break-word; overflow-wrap: break-word; }
h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; word-wrap: break-word; overflow-wrap: break-word; }

/* Prevent text overflow in all text elements */
p, span, div, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-large { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); line-height: 1.8; }
.text-teal, .text-purple { color: var(--teal); font-weight: 600; }

/* Navigation - styles are in site.css */

/* Colorful logo letters */
.logo-letter-r { color: #a855f7; }
.logo-letter-y { color: #06b6d4; }
.logo-letter-s { color: #ec4899; }
.logo-letter-h { color: #f97316; }
.logo-letter-e { color: #22c55e; }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

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

.nav-links a:hover {
    color: var(--purple);
}

.mobile-menu {
    display: none;
    background: var(--dark-blue);
    border: 2px solid var(--teal);
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: var(--dark-blue-light);
    transform: scale(1.05);
}

.mobile-nav {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--navy-deep) 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    z-index: 999;
    border-bottom: 3px solid var(--teal);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    background: rgba(0, 212, 255, 0.15);
    border-left-color: var(--teal);
    padding-left: 2rem;
    transform: translateX(5px);
}

.mobile-cta-btn {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
    color: var(--white) !important;
    margin-top: 1rem;
    padding: 1rem 1.5rem !important;
    text-align: center;
    font-weight: 600;
    border-radius: 8px !important;
    border-left: 3px solid var(--teal) !important;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

/* Buttons */
.btn-primary {
    background: var(--purple);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

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

/* Badge */
.badge {
    background: rgba(0, 212, 255, 0.15);
    color: var(--teal);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(0, 212, 255, 0.3);
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.25);
    border-color: var(--teal);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(10, 37, 64, 0.15) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--dark-blue) 50%, var(--dark-blue-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    outline: none;
    border: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

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

.section-gray {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    margin: 3rem 0 2rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Technology Partners Section */
.partners-section {
    background: var(--gray-50);
    padding: 3rem 0;
    text-align: center;
}

.partners-heading {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    gap: 1.5rem;
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.card:hover .service-icon {
    transform: translateY(-5px);
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.check-list li {
    margin-bottom: 1rem;
}

/* Leadership Section */
.leadership-section {
    margin-top: 4rem;
}

.leadership-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(10, 37, 64, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    flex-shrink: 0;
    border: 3px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.card:hover .leader-avatar {
    border-color: var(--teal);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.leader-info h4 {
    margin-bottom: 0.25rem;
}

.leader-info .badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.leader-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.leader-centered {
    max-width: 600px;
    margin: 2rem auto 0;
}

/* Case Studies */
.case-study-card {
    margin-bottom: 2rem;
}

.case-study-card h3 {
    margin-top: 1rem;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.case-study-content h4 {
    margin-bottom: 0.5rem;
}

.case-study-content p {
    color: var(--gray-600);
}

.results-grid {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(10, 37, 64, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.results-grid h4 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.results-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
}

.result-label {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Testimonial */
.testimonial {
    border-left: 4px solid var(--teal);
    padding-left: 2rem;
    margin-top: 2rem;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
    padding: 1.5rem 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--gray-600);
}

/* Blog */
.featured-post {
    border: 2px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(0, 212, 255, 0.04) 100%);
    margin-bottom: 2rem;
}

.featured-post h2 {
    margin-top: 1rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 1rem 0;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info small {
    color: var(--gray-600);
}

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

.blog-card {
    cursor: pointer;
}

.blog-card h4 {
    margin-top: 1rem;
}

.post-meta-small {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 1rem 0;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info .card h4 {
    margin-bottom: 0.5rem;
}

.contact-info .card p {
    color: var(--gray-600);
    margin: 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--navy-deep) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer h3 {
    margin-bottom: 1rem;
}

.footer h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-description {
    color: var(--gray-300);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--purple-light);
}

.footer-links span {
    color: var(--gray-300);
    font-size: 0.875rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-300);
}

/* Article Page */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
}

.article-page {
    padding-top: 8rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: gap 0.3s;
}

.back-button:hover {
    gap: 0.75rem;
    color: var(--teal-dark);
}

.article-header {
    text-align: center;
    padding-bottom: 3rem;
}

.article-header h1 {
    font-size: 3rem;
    margin: 1rem 0;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, 
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-cta {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
}

.author-bio {
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(26, 10, 46, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}

.author-details h4 {
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--gray-600);
    margin-bottom: 0.5rem !important;
}

.article-footer {
    text-align: center;
    margin: 4rem 0;
}

/* Error Page */
.error-page {
    padding: 10rem 0;
    text-align: center;
}

.error-page h1 {
    margin-bottom: 1rem;
}

.error-page p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.request-id {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Responsive */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .leadership-grid,
    .case-study-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .results-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        justify-content: center;
    }

    .stat-item {
        min-width: 120px;
    }

    .partners-grid {
        gap: 3rem;
    }

    .partner-logo {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    /* Typography adjustments for mobile */
    h1 {
        font-size: 2.25rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.35rem;
    }

    .text-large {
        font-size: 1.1rem;
    }

    /* Section spacing - reduced for less white space */
    section {
        padding: 2rem 0;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Buttons on mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1.25rem 2rem;
        font-size: 1.05rem;
    }

    /* Add more blue backgrounds on mobile - reduce white space */
    section:nth-child(even):not(.hero):not(.stats) {
        background: linear-gradient(180deg, rgba(10, 37, 64, 0.05) 0%, rgba(0, 212, 255, 0.04) 100%);
    }

    /* Add subtle blue tint to all sections on mobile */
    section {
        background: linear-gradient(180deg, rgba(10, 37, 64, 0.02) 0%, transparent 100%);
    }

    section.hero {
        background: linear-gradient(135deg, var(--navy-deep) 0%, var(--dark-blue) 50%, var(--dark-blue-light) 100%);
    }

    /* Cards on mobile - better spacing */
    .card {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .services-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Service cards on mobile */
    .service-card {
        flex-direction: column;
        padding: 1.75rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Footer on mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Stats section on mobile */
    .stats-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem;
        background: rgba(0, 212, 255, 0.08);
        border-radius: 10px;
        border: 1px solid rgba(0, 212, 255, 0.2);
    }

    .stat-value {
        font-size: 2.5rem;
    }

    /* Blog/Article pages on mobile */
    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .article-content {
        font-size: 1.05rem;
    }

    /* Partners section on mobile */
    .partners-section {
        padding: 2rem 0;
    }

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

    .partner-logo {
        width: 80px;
        height: 40px;
    }

    /* Logo on mobile - make smaller */
    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    /* Case studies on mobile */
    .case-study-card {
        padding: 1.5rem;
    }

    /* Value cards on mobile */
    .value-icon {
        width: 60px;
        height: 60px;
    }

    /* Leadership cards on mobile */
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leader-card {
        padding: 1.75rem;
    }

    .leader-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.35rem;
    }
}

/* ================================
   Loading Screen Animation
   ================================ */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--dark-blue) 50%, var(--dark-blue-light) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#loadingScreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#loadingScreen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.animated-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: logoReveal 1.5s ease-out;
}

.loading-logo-icon {
    width: 150px;
    height: 150px;
    color: var(--white);
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.7));
    opacity: 0;
    animation: iconFadeIn 1s ease-out 0.2s forwards;
}

.loading-logo-text {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3em;
    opacity: 0;
    animation: textFadeIn 0.8s ease-out 0.6s forwards;
}

@keyframes iconFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.parent-company {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ================================
   Core Values Section
   ================================ */
.core-values-section {
    margin-top: 4rem;
}

.core-values-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 37, 64, 0.15) 100%);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--teal);
    stroke-width: 2;
    fill: none;
}

.card:hover .value-icon {
    background: var(--teal);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.card:hover .value-icon svg {
    stroke: white;
}

.value-card h4 {
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .core-values-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Utility Classes
   ================================ */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

.flex {
    display: flex;
    gap: 1rem;
}

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

.bg-gray {
    background: var(--gray-50);
}

.text-gray {
    color: var(--gray-600);
}

/* ================================
   Demo Launchpad Dashboard
   ================================ */
.demo-launchpad {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--dark-blue) 100%);
    color: #e2e8f0;
}

/* Launchpad Header */
.launchpad-header {
    background: rgba(10, 37, 64, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.launchpad-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.launchpad-logo-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
    filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.4));
    transition: all 0.3s ease;
}

.launchpad-logo:hover .launchpad-logo-icon {
    filter: drop-shadow(0 6px 20px rgba(0, 212, 255, 0.5));
    transform: scale(1.05);
}

.launchpad-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
}

.launchpad-logo-text span {
    color: var(--teal-light);
}

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

.launchpad-search {
    background: rgba(15, 58, 95, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #e2e8f0;
    width: 280px;
    font-size: 0.9rem;
}

.launchpad-search::placeholder {
    color: #64748b;
}

.launchpad-search:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

/* Main Layout */
.launchpad-main {
    display: flex;
}

/* Sidebar */
.launchpad-sidebar {
    width: 260px;
    background: rgba(10, 37, 64, 0.6);
    border-right: 1px solid rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
    min-height: calc(100vh - 70px);
    flex-shrink: 0;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    text-decoration: none;
}

.filter-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #e2e8f0;
}

.filter-btn.active {
    background: rgba(0, 212, 255, 0.2);
    color: var(--teal-light);
    border-left: 3px solid var(--teal);
}

.filter-icon {
    font-size: 1rem;
}

.filter-count {
    margin-left: auto;
    background: rgba(0, 212, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--teal-light);
}

/* Content Area */
.launchpad-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.demo-launchpad .stat-card {
    background: linear-gradient(135deg, rgba(15, 58, 95, 0.8), rgba(10, 37, 64, 0.9));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-launchpad .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.demo-launchpad .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.stat-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-label {
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Section Header */
.content-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.content-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem 0.75rem;
    background: rgba(15, 58, 95, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    color: #64748b;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.view-btn:hover {
    background: rgba(0, 212, 255, 0.1);
}

.view-btn.active {
    background: rgba(0, 212, 255, 0.2);
    color: var(--teal-light);
}

/* Demo Grid */
.launchpad-demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* Demo Card */
.launchpad-demo-card {
    background: linear-gradient(145deg, rgba(15, 58, 95, 0.9), rgba(10, 37, 64, 0.95));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.launchpad-demo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.2);
}

.launchpad-demo-card.offline {
    opacity: 0.8;
}

.demo-preview {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.demo-preview-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-preview-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.95), transparent 60%);
}

.demo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 5;
}

.demo-badge.new {
    background: rgba(0, 212, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.demo-badge.popular {
    background: rgba(245, 158, 11, 0.9);
}

.demo-badge.coming-soon {
    background: rgba(100, 116, 139, 0.9);
}

.launchpad-demo-card .demo-icon {
    position: absolute;
    bottom: -20px;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 3px solid var(--navy-deep);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    z-index: 10;
}

.launchpad-demo-card .demo-content {
    padding: 2rem 1.5rem 1.5rem;
}

.launchpad-demo-card .demo-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.launchpad-demo-card .demo-tagline {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.launchpad-demo-card .demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-chip {
    padding: 0.25rem 0.625rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--teal-light);
}

.launchpad-demo-card .demo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.launchpad-demo-card .demo-tech {
    display: flex;
    gap: 0.5rem;
}

.launchpad-demo-card .tech-icon {
    width: 24px;
    height: 24px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #94a3b8;
}

.launch-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.launch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.launch-btn.disabled {
    background: rgba(100, 116, 139, 0.5);
    cursor: not-allowed;
}

.launch-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Loading & Empty States */
.demo-launchpad .loading-state,
.demo-launchpad .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.demo-launchpad .empty-state .btn-primary {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .launchpad-sidebar {
        display: none;
    }

    .launchpad-demo-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .launchpad-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .launchpad-logo-text {
        font-size: 1.5rem;
    }

    .launchpad-search {
        width: 100%;
        font-size: 1rem;
    }

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

    .stat-card {
        padding: 1.25rem;
    }

    .stat-card-value {
        font-size: 1.75rem;
    }

    .stat-card-label {
        font-size: 0.85rem;
    }

    .launchpad-content {
        padding: 1rem;
    }

    .content-section-title {
        font-size: 1.5rem;
    }

    .launchpad-demo-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .launchpad-demo-card {
        margin-bottom: 0.5rem;
    }

    .launchpad-demo-card .demo-title {
        font-size: 1.15rem;
    }

    .launchpad-demo-card .demo-tagline {
        font-size: 0.85rem;
    }

    .demo-preview {
        height: 160px;
    }

    .demo-preview-icon {
        font-size: 3rem;
    }

    /* Demo detail page mobile */
    .demo-detail-page {
        padding: 1rem;
    }

    .demo-detail-container {
        border-radius: 16px;
    }

    .demo-detail-page .screenshot-section {
        height: 220px;
    }

    .screenshot-placeholder-icon {
        font-size: 2.5rem;
    }

    .detail-content {
        flex-direction: column;
        padding: 0;
    }

    .demo-details, .action-panel {
        padding: 1.5rem;
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-icon-large {
        margin-bottom: 1rem;
    }

    .detail-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .tech-stack {
        gap: 0.5rem;
    }

    .tech-item {
        font-size: 0.85rem;
    }
}

/* ================================
   Demo Detail Page
   ================================ */
.demo-detail-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--purple-light);
}

.back-arrow {
    font-size: 1.2rem;
}

.demo-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.demo-detail-page .screenshot-section {
    position: relative;
    height: 400px;
    background: #0f172a;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.screenshot-placeholder-content {
    text-align: center;
}

.screenshot-placeholder-icon {
    font-size: 6rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.screenshot-placeholder-text {
    color: #64748b;
    font-size: 0.875rem;
}

.screenshot-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: #e2e8f0;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.arrow-btn:hover {
    background: rgba(168, 85, 247, 0.3);
}

.screenshot-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.screenshot-dot.active {
    background: var(--purple-light);
    transform: scale(1.2);
}

.thumbnail-strip {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    overflow-x: auto;
}

.thumbnail {
    width: 120px;
    height: 68px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.6;
    background: #1e293b;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.thumbnail:hover {
    opacity: 0.9;
}

.thumbnail.active {
    border-color: var(--purple-light);
    opacity: 1;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    padding: 2rem;
}

.demo-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.demo-icon-large {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.demo-title-group h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #e2e8f0;
}

.demo-tagline-text {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.demo-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.detail-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-new {
    background: rgba(168, 85, 247, 0.2);
    color: #c4b5fd;
}

.badge-ai {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.badge-enterprise {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.demo-description {
    color: #94a3b8;
    line-height: 1.7;
}

.features-section h3,
.tech-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.feature-text {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.tech-stack {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.action-panel {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    height: fit-content;
}

.action-panel h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #e2e8f0;
}

.estimate-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.estimate-label {
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.estimate-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e2e8f0;
}

.estimate-sublabel {
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-action {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    border: none;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
}

.btn-primary-action {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.btn-secondary-action {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c4b5fd;
}

.btn-secondary-action:hover {
    background: rgba(168, 85, 247, 0.15);
}

.btn-ghost {
    background: transparent;
    color: #64748b;
}

.btn-ghost:hover {
    color: #e2e8f0;
}

.btn-disabled {
    background: rgba(100, 116, 139, 0.5);
    color: #94a3b8;
    cursor: not-allowed;
}

.shared-resources {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.shared-resources h4 {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.shared-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shared-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.shared-item::before {
    content: '\2713';
    color: #10b981;
}

.demo-detail-page .loading-state,
.demo-detail-page .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.demo-detail-page .empty-state .btn-action {
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .detail-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .demo-detail-page {
        padding: 1rem;
    }

    .demo-detail-page .screenshot-section {
        height: 250px;
    }

    .screenshot-placeholder-icon {
        font-size: 4rem;
    }

    .demo-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .demo-badges {
        justify-content: center;
    }

    .detail-content {
        padding: 1.5rem;
    }

    .thumbnail-strip {
        padding: 0.75rem 1rem;
    }

    .thumbnail {
        width: 80px;
        height: 45px;
        font-size: 1rem;
    }
}
