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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    overflow-x: hidden;
    background: #ffffff;
}

.binarystitch-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation Styles */
.binarystitch-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.binarystitch-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.binarystitch-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.binarystitch-logo:hover {
    transform: translateY(-1px);
}

.binarystitch-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.binarystitch-nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.binarystitch-nav-link:hover,
.binarystitch-nav-link.active {
    color: #0ea5e9;
}

.binarystitch-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transition: width 0.3s ease;
}

.binarystitch-nav-link:hover::after,
.binarystitch-nav-link.active::after {
    width: 100%;
}

.binarystitch-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.binarystitch-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #475569;
    transition: all 0.3s ease;
}

/* Breadcrumb Navigation */
.binarystitch-breadcrumb {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 80px;
}

.binarystitch-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.binarystitch-breadcrumb-nav a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.binarystitch-breadcrumb-nav .material-icons {
    font-size: 16px;
    transition: all 0.3s ease;
}

.binarystitch-breadcrumb-nav a:hover .material-icons {
    transform: scale(1.1);
}

.binarystitch-breadcrumb-nav a:hover {
    color: #0891b2;
}

.binarystitch-breadcrumb-separator {
    color: #94a3b8;
}

.binarystitch-breadcrumb-current {
    color: #64748b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Hero Section */
.binarystitch-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    overflow: hidden;
    padding-top: 40px;
}

.binarystitch-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.binarystitch-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.binarystitch-hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.binarystitch-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.binarystitch-hero-text {
    max-width: 600px;
}

.binarystitch-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #0f172a;
}

.binarystitch-hero-line {
    display: block;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.binarystitch-hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.binarystitch-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.binarystitch-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

/* Section Headers */
.binarystitch-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.binarystitch-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.binarystitch-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.binarystitch-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Technology Sections */
.binarystitch-tech-section {
    padding: 120px 0;
    background: white;
}

.binarystitch-tech-section-alt {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.binarystitch-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.binarystitch-tech-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.binarystitch-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.binarystitch-tech-card:hover::before {
    transform: scaleX(1);
}

.binarystitch-tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.binarystitch-tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.binarystitch-tech-card:hover .binarystitch-tech-icon {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    transform: scale(1.1);
}

.binarystitch-tech-icon .material-icons {
    font-size: 40px;
    color: #0ea5e9;
    transition: all 0.3s ease;
    line-height: 1;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.binarystitch-tech-card:hover .binarystitch-tech-icon .material-icons {
    color: white;
}

.binarystitch-tech-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.binarystitch-tech-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.binarystitch-tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.binarystitch-tech-feature {
    padding: 6px 12px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.binarystitch-tech-card:hover .binarystitch-tech-feature {
    background: #0ea5e9;
    color: white;
}

/* Technology Summary */
.binarystitch-tech-summary {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.binarystitch-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.binarystitch-summary-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
}

.binarystitch-summary-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.binarystitch-summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.binarystitch-summary-icon .material-icons {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.binarystitch-summary-item:hover .binarystitch-summary-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.binarystitch-summary-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.binarystitch-summary-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Get Started CTA */
.binarystitch-get-started {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.binarystitch-get-started-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.binarystitch-get-started-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.binarystitch-get-started-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.binarystitch-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.binarystitch-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
}

.binarystitch-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
}

.binarystitch-btn-outline {
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
    position: relative;
}

.binarystitch-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0ea5e9;
    transition: width 0.3s ease;
    z-index: -1;
}

.binarystitch-btn-outline:hover::before {
    width: 100%;
}

.binarystitch-btn-outline:hover {
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.binarystitch-footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
}

.binarystitch-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.binarystitch-footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.binarystitch-footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.binarystitch-footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.binarystitch-footer-links {
    list-style: none;
}

.binarystitch-footer-links li {
    margin-bottom: 12px;
}

.binarystitch-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.binarystitch-footer-links a:hover {
    color: #0ea5e9;
}

.binarystitch-footer-contact p {
    color: #cbd5e1;
    margin-bottom: 8px;
    line-height: 1.6;
}

.binarystitch-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 40px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .binarystitch-container {
        padding: 0 30px;
    }

    .binarystitch-hero-title {
        font-size: 3rem;
    }

    .binarystitch-section-title {
        font-size: 2.5rem;
    }

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

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

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

    .binarystitch-nav-toggle {
        display: flex;
    }

    .binarystitch-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .binarystitch-hero-title {
        font-size: 2.5rem;
    }

    .binarystitch-tech-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .binarystitch-summary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .binarystitch-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .binarystitch-container {
        padding: 0 20px;
    }

    .binarystitch-get-started-content h2 {
        font-size: 2rem;
    }

    .binarystitch-get-started-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .binarystitch-hero-title {
        font-size: 2rem;
    }

    .binarystitch-section-title {
        font-size: 2rem;
    }

    .binarystitch-get-started-content h2 {
        font-size: 1.75rem;
    }

    .binarystitch-tech-card {
        padding: 30px 20px;
    }

    .binarystitch-summary-item {
        padding: 30px 20px;
    }

    .binarystitch-breadcrumb-nav {
        font-size: 0.75rem;
        gap: 8px;
    }
}