        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            /* Removed scroll-snap for custom JavaScript implementation */
        }

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

        section {
            /* Removed scroll-snap for custom JavaScript implementation */
        }

        /* Remove scroll snap for footer */
        .footer-section {
            /* Removed scroll-snap for custom JavaScript implementation */
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-end;
            padding: 60px;
            padding-bottom: 60px;
            background-color: #ffffff;
        }

        .logo {
            position: absolute;
            top: 30px;
            left: 60px;
            font-size: 24px;
            font-weight: 200;
            letter-spacing: 3px;
            opacity: 1;
        }

        /* Hamburger Menu */
        .menu-button {
            position: fixed;
            top: 35px;
            right: 60px;
            width: 30px;
            height: 20px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 0;
        }

        .menu-line {
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background: #000000;
            transition: all 0.3s ease;
        }

        /* White menu button for dark sections */
        .menu-button.white .menu-line {
            background: #ffffff;
        }

        .menu-line:nth-child(1) {
            top: 0;
        }

        .menu-line:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .menu-line:nth-child(3) {
            bottom: 0;
        }

        /* Menu Open State */
        .menu-button.active .menu-line {
            background: #000000;
        }

        .menu-button.active .menu-line:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .menu-button.active .menu-line:nth-child(2) {
            opacity: 0;
        }

        .menu-button.active .menu-line:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Full Screen Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            z-index: 1000;
            display: block;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            overflow-y: auto;
        }

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

        .menu-content {
            position: absolute;
            top: 120px;
            right: 60px;
            text-align: left;
        }

        .menu-item {
            display: block;
            font-size: 32px;
            font-weight: 300;
            color: #000000;
            text-decoration: none;
            margin: 25px 0;
            letter-spacing: 1px;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .menu-item:hover {
            opacity: 0.6;
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
            max-width: 500px;
            margin-bottom: 0;
            margin-left: 0;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 200;
            line-height: 1.3;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            opacity: 1;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.5;
            color: #666666;
            letter-spacing: -0.01em;
            opacity: 1;
        }

        .neural-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .neural-signal {
            position: absolute;
            width: 40px;
            height: 40px;
            transform: translate(-50%, -50%);
            opacity: 1;
        }

        .neural-line {
            position: absolute;
            background: rgba(128, 128, 128, 0.15);
            transform-origin: center;
        }

        .neural-line.vertical-top {
            width: 2px;
            height: 15px;
            left: 50%;
            top: 0;
            transform: translateX(-50%) translateY(-15px);
        }

        .neural-line.vertical-bottom {
            width: 2px;
            height: 15px;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%) translateY(15px);
        }

        .neural-line.horizontal-left {
            width: 15px;
            height: 2px;
            left: 0;
            top: 50%;
            transform: translateY(-50%) translateX(-15px);
        }

        .neural-line.horizontal-right {
            width: 15px;
            height: 2px;
            right: 0;
            top: 50%;
            transform: translateY(-50%) translateX(15px);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            opacity: 1;
        }

        .scroll-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 1px;
            height: 20px;
            background: rgba(128, 128, 128, 0.3);
            transform: translateX(-50%);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
                opacity: 0;
            }
            50% {
                transform: translateX(-50%) translateY(20px);
                opacity: 1;
            }
        }

        /* Core Practices Section */
        .practices-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 80px 60px;
            padding-top: 25vh;
            position: relative;
            background-color: #ffffff;
        }

        .practices-content {
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .practices-text {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.8;
            color: #333333;
            margin-bottom: 15%;
            letter-spacing: -0.01em;
            opacity: 1;
        }

        .practices-grid {
            display: flex;
            justify-content: space-between;
            gap: 0;
            margin-bottom: 0;
            flex-wrap: nowrap;
            position: relative;
            max-width: 1200px;
            width: 100%;
        }

        .practice-item {
            position: relative;
            opacity: 1;
            flex: 0 0 33.333%;
            display: flex;
            justify-content: center;
        }



        .practice-box {
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: #ffffff;
        }

        /* Animated dotted border with clockwise motion */
        .practice-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, rgba(128, 128, 128, 0.4) 50%, transparent 50%),
                linear-gradient(90deg, rgba(128, 128, 128, 0.4) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.4) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.4) 50%, transparent 50%);
            background-size: 
                8px 2px,
                8px 2px,
                2px 8px,
                2px 8px;
            background-position: 
                0 0,
                0 100%,
                0 0,
                100% 0;
            background-repeat: 
                repeat-x,
                repeat-x,
                repeat-y,
                repeat-y;
            animation: dashMove 1s linear infinite;
        }

        @keyframes dashMove {
            0% {
                background-position: 
                    0 0,
                    8px 100%,
                    0 0,
                    100% 8px;
            }
            100% {
                background-position: 
                    8px 0,
                    0 100%,
                    0 8px,
                    100% 0;
            }
        }

        .practice-text {
            font-size: 16px;
            font-weight: 300;
            color: #000000;
            text-align: center;
            line-height: 1.4;
            z-index: 1;
            position: relative;
        }

        .practice-line {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 50px; /* Shorter height for desktop */
            overflow: hidden;
            pointer-events: none;
        }

        .practice-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to bottom, 
                rgba(128, 128, 128, 0.4) 0%, 
                rgba(128, 128, 128, 0.4) 50%, 
                transparent 50%, 
                transparent 100%);
            background-size: 3px 16px;
            animation: lineFlow 1s linear infinite;
        }

        @keyframes lineFlow {
            0% {
                transform: translateY(-16px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Workflow Section */
        .workflow-section {
            min-height: 100vh;
            padding: 80px 60px;
            background-color: #ffffff;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .workflow-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            width: 100%;
        }

        /* Lines coming from top */
        .top-lines {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1200px;
            height: 0;
            display: flex;
            justify-content: center;
            pointer-events: none;
        }

        .top-line {
            width: 3px;
            height: 80px;
            overflow: hidden;
            position: absolute;
            top: -80px;
        }

        .top-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to bottom, 
                rgba(128, 128, 128, 0.4) 0%, 
                rgba(128, 128, 128, 0.4) 50%, 
                transparent 50%, 
                transparent 100%);
            background-size: 3px 16px;
            animation: lineFlow 1s linear infinite;
        }

        .workflow-grid {
            display: flex;
            justify-content: center;
            gap: 80px;
            margin-bottom: 60px;
            margin-top: 0;
            position: relative;
            align-items: flex-start;
            max-width: 1200px;
            width: 100%;
        }

        .workflow-item {
            flex: 0 0 auto;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .workflow-box {
            width: 280px;
            height: 260px;
            padding: 35px 25px;
            background: #ffffff;
            position: relative;
            opacity: 1;
            display: flex;
            flex-direction: column;
            z-index: 1;
        }

        /* Animated dotted border for workflow boxes */
        .workflow-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(90deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%);
            background-size: 
                8px 2px,
                8px 2px,
                2px 8px,
                2px 8px;
            background-position: 
                0 0,
                0 100%,
                0 0,
                100% 0;
            background-repeat: 
                repeat-x,
                repeat-x,
                repeat-y,
                repeat-y;
            animation: dashMove 1s linear infinite;
        }



        .workflow-icon {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: rgba(0, 0, 0, 0.7);
            z-index: 2;
        }

        .workflow-icon svg {
            width: 24px;
            height: 24px;
            stroke: rgba(0, 0, 0, 0.7);
        }

        .workflow-title {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .workflow-text {
            font-size: 14px;
            font-weight: 300;
            line-height: 1.8;
            color: #333333;
            text-align: left;
        }

        /* Lines from boxes to S8L */
        .workflow-item .workflow-line-down {
            position: absolute;
            top: 100%;
            width: 3px;
            height: 120px;
            overflow: hidden;
            right: auto;
        }

        .workflow-line-down::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to bottom, 
                rgba(128, 128, 128, 0.4) 0%, 
                rgba(128, 128, 128, 0.4) 50%, 
                transparent 50%, 
                transparent 100%);
            background-size: 3px 16px;
            animation: lineFlow 1s linear infinite;
        }

        /* Horizontal lines for left and right boxes */
        .workflow-item .workflow-line-horizontal {
            position: absolute;
            top: calc(100% + 120px);
            height: 3px;
            overflow: hidden;
            right: auto;
        }

        .workflow-line-horizontal::before {
            content: '';
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(90deg, 
                rgba(128, 128, 128, 0.4) 0%, 
                rgba(128, 128, 128, 0.4) 50%, 
                transparent 50%, 
                transparent 100%);
            background-size: 16px 3px;
        }

        /* Animation directions reversed to flow toward center */
        .workflow-item.hardware .workflow-line-horizontal::before {
            animation: lineFlowRight 1s linear infinite;
        }

        .workflow-item.software .workflow-line-horizontal::before {
            animation: lineFlowLeft 1s linear infinite;
        }

        @keyframes lineFlowRight {
            0% {
                transform: translateX(-16px);
            }
            100% {
                transform: translateX(0);
            }
        }

        @keyframes lineFlowLeft {
            0% {
                transform: translateX(16px);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* S8L Circle */
        .center-circle {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 60px auto 50px;
            border: 3px dashed rgba(128, 128, 128, 0.3);
            border-radius: 50%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 1;
        }

        /* Line from S8L to final box */
        .center-line-down {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 50px;
            overflow: hidden;
        }

        .center-line-down::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to bottom, 
                rgba(128, 128, 128, 0.4) 0%, 
                rgba(128, 128, 128, 0.4) 50%, 
                transparent 50%, 
                transparent 100%);
            background-size: 3px 16px;
            animation: lineFlow 1s linear infinite;
        }

        /* Final Box */
        .final-section {
            display: flex;
            justify-content: center;
            margin-top: 0;
        }

        .final-box {
            width: 550px;
            height: 150px;
            padding: 40px 30px;
            background: #ffffff;
            position: relative;
            opacity: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .final-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(90deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%);
            background-size: 
                8px 2px,
                8px 2px,
                2px 8px,
                2px 8px;
            background-position: 
                0 0,
                0 100%,
                0 0,
                100% 0;
            background-repeat: 
                repeat-x,
                repeat-x,
                repeat-y,
                repeat-y;
            animation: dashMove 1s linear infinite;
        }

        .final-icon {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: rgba(0, 0, 0, 0.7);
            z-index: 2;
        }

        .final-icon svg {
            width: 24px;
            height: 24px;
            stroke: rgba(0, 0, 0, 0.7);
        }

        .final-text {
            font-size: 14px;
            font-weight: 300;
            line-height: 1.8;
            color: #333333;
            text-align: center;
        }

        /* Hardware Section - New 4th section */
        .hardware-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-end;
            padding: 60px;
            padding-bottom: 60px;
            background: #1e1e1e;
            animation: fadeToNight 2s ease-out;
        }

        @keyframes fadeToNight {
            from {
                background: #ffffff;
            }
            to {
                background: #1e1e1e;
            }
        }

        .hardware-header {
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            font-weight: 200;
            letter-spacing: 3px;
            color: #ffffff;
            opacity: 1;
        }

        /* Updated hardware layout for content + 3D model */
        .hardware-container {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            gap: 80px;
            position: relative;
            z-index: 10;
            margin-bottom: 0;
        }

        .hardware-content {
            position: relative;
            z-index: 10;
            max-width: 500px;
            flex-shrink: 0;
            margin-bottom: 0;
        }

        .hardware-title {
            font-size: 24px;
            font-weight: 200;
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            color: #ffffff;
            opacity: 1;
        }

        .hardware-text {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.6;
            color: #cccccc;
            letter-spacing: -0.01em;
            opacity: 1;
            margin-bottom: 20px;
        }

        /* 3D Model Container */
        .model-container {
            position: relative;
            flex: 1;
            height: 500px;
            min-width: 400px;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
        }

        /* Model viewer styles - smaller interactive area */
        model-viewer {
            width: 70%;
            height: 70%;
            background-color: transparent;
            border-radius: 4px;
            --poster-color: transparent;
            --progress-bar-color: rgba(255, 255, 255, 0.5);
            margin: auto;
        }

        model-viewer::part(default-progress-bar) {
            display: none;
        }

        /* Loading state for model */
        model-viewer.loading {
            opacity: 0.3;
        }

        .model-loading-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #666;
            font-size: 14px;
            font-weight: 300;
            display: none;
            text-align: center;
            line-height: 1.5;
            pointer-events: none;
        }

        model-viewer.loading + .model-loading-text {
            display: block;
        }

        /* White neural signals for dark background */
        .neural-container-dark {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .neural-signal-dark {
            position: absolute;
            width: 40px;
            height: 40px;
            transform: translate(-50%, -50%);
            opacity: 1;
        }

        .neural-line-dark {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            transform-origin: center;
        }

        .neural-line-dark.vertical-top {
            width: 2px;
            height: 15px;
            left: 50%;
            top: 0;
            transform: translateX(-50%) translateY(-15px);
        }

        .neural-line-dark.vertical-bottom {
            width: 2px;
            height: 15px;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%) translateY(15px);
        }

        .neural-line-dark.horizontal-left {
            width: 15px;
            height: 2px;
            left: 0;
            top: 50%;
            transform: translateY(-50%) translateX(-15px);
        }

        .neural-line-dark.horizontal-right {
            width: 15px;
            height: 2px;
            right: 0;
            top: 50%;
            transform: translateY(-50%) translateX(15px);
        }

        /* Comparison Section - New 5th section */
        .comparison-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 80px 60px;
            background: #1e1e1e;
        }

        .comparison-header {
            font-size: 24px;
            font-weight: 200;
            letter-spacing: 3px;
            color: #ffffff;
            opacity: 1;
            margin-bottom: 20px;
        }

        .comparison-subheader {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.6;
            color: #cccccc;
            text-align: center;
            max-width: 700px;
            margin-bottom: 60px;
            letter-spacing: -0.01em;
        }

        /* Comparison Table - wider */
        .comparison-table-container {
            width: 100%;
            max-width: 900px;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: transparent;
            table-layout: fixed;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 15px 20px;
            text-align: left;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .comparison-table th {
            background: rgba(255, 255, 255, 0.05);
            font-weight: 400;
            letter-spacing: 0.5px;
            font-size: 13px;
        }

        .comparison-table td {
            font-weight: 300;
            font-size: 15px;
            background: transparent;
        }

        .comparison-table tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }

        .comparison-table th:first-child {
            font-weight: 300;
            font-size: 15px;
            letter-spacing: normal;
            width: 30%;
            text-transform: none;
        }

        .comparison-table .product-name {
            font-weight: 400;
            font-size: 16px;
            letter-spacing: 0.5px;
        }

        .comparison-table .highlight {
            color: #4CAF50;
            font-weight: 400;
        }

        .comparison-table .price-row {
            border-top: 3px solid rgba(255, 255, 255, 0.2);
        }

        /* Mission Section - New 6th section */
        .mission-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 60px;
            background: #ffffff;
        }

        .mission-header {
            font-size: 24px;
            font-weight: 200;
            letter-spacing: 3px;
            color: #000000;
            opacity: 1;
            margin-bottom: 60px;
            text-align: center;
        }

        .mission-content {
            max-width: 900px;
            width: 100%;
            text-align: center;
        }

        .mission-text {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.8;
            color: #333333;
            letter-spacing: -0.01em;
            opacity: 1;
        }

        .mission-text p {
            margin-bottom: 30px;
        }

        .mission-text p:last-child {
            margin-bottom: 0;
        }

        /* Timeline Section - New 7th section */
        .timeline-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 80px 60px;
            padding-top: 120px;
            background: #ffffff;
            overflow: hidden;
        }

        .timeline-header {
            font-size: 24px;
            font-weight: 200;
            letter-spacing: 3px;
            color: #000000;
            opacity: 1;
            margin-bottom: 120px;
            text-align: center;
        }

        .timeline-container {
            position: relative;
            width: 100%;
            opacity: 0;
            animation: fadeInTimeline 1.5s ease-out forwards;
            animation-delay: 0.3s;
        }

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

        /* Main horizontal timeline line */
        .timeline-line {
            position: absolute;
            top: 50%;
            left: -60px;
            right: -60px;
            height: 4px;
            background: rgba(128, 128, 128, 0.4);
            transform: translateY(-2px);
        }

        /* Timeline items */
        .timeline-items {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 400px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .timeline-item {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 0 30px;
        }

        /* Vertical lines from timeline */
        .timeline-marker {
            position: absolute;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            width: 4px;
            height: 60px;
            background: rgba(128, 128, 128, 0.4);
        }

        /* Timeline content positioning */
        .timeline-content {
            position: absolute;
            width: 100%;
            text-align: left;
            padding-right: 20px;
        }

        .timeline-content.above {
            bottom: calc(50% + 50px);
        }

        .timeline-content.below {
            top: calc(50% + 50px);
        }

        .timeline-year {
            font-size: 18px;
            font-weight: 400;
            color: #000000;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .timeline-description {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.6;
            color: #333333;
            letter-spacing: -0.01em;
            max-width: 280px;
        }

        /* Team Section - New 8th section */
        .team-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 60px;
            padding-bottom: 120px; /* Extra padding to allow scrolling to footer */
            background: #ffffff;
        }

        .team-header {
            font-size: 24px;
            font-weight: 200;
            letter-spacing: 3px;
            color: #000000;
            opacity: 1;
            margin-bottom: 80px;
            text-align: center;
        }

        .team-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px 80px;
            margin-bottom: 80px;
        }

        .team-member {
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }

        .team-image-container {
            width: 280px;
            height: 280px;
            flex-shrink: 0;
            position: relative;
        }

        .team-image-placeholder {
            width: 100%;
            height: 100%;
            background: #f0f0f0;
            border: 2px dashed rgba(128, 128, 128, 0.3);
            position: relative;
            overflow: hidden;
        }

        .team-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Apply grayscale filter to all team images except aleks.jpeg */
        .team-image:not([src*="aleks.jpeg"]) {
            filter: grayscale(100%);
        }

        /* Animated dotted border for team images */
        .team-image-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(90deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%),
                linear-gradient(0deg, rgba(128, 128, 128, 0.3) 50%, transparent 50%);
            background-size: 
                8px 2px,
                8px 2px,
                2px 8px,
                2px 8px;
            background-position: 
                0 0,
                0 100%,
                0 0,
                100% 0;
            background-repeat: 
                repeat-x,
                repeat-x,
                repeat-y,
                repeat-y;
            animation: dashMove 1s linear infinite;
        }

        .team-info {
            flex: 1;
            text-align: left;
            padding-top: 5px;
        }

        .team-name {
            font-size: 18px;
            font-weight: 400;
            color: #000000;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .team-name a {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .team-name a:hover {
            opacity: 0.6;
        }

        .team-name svg {
            width: 20px;
            height: 20px;
            stroke: #000000;
            flex-shrink: 0;
        }

        .team-bio {
            font-size: 14px;
            font-weight: 300;
            line-height: 1.6;
            color: #333333;
            letter-spacing: -0.01em;
        }

        .join-us-container {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        .join-us-button {
            background: #1e1e1e;
            color: #ffffff;
            border: none;
            padding: 16px 40px;
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 1px;
            cursor: pointer;
            transition: opacity 0.3s ease;
            font-family: inherit;
        }

        .join-us-button:hover {
            opacity: 0.8;
        }

        /* Footer Section */
        .footer-section {
            position: relative;
            padding: 80px 60px;
            background: #1e1e1e;
            overflow: hidden;
        }

        .footer-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px 50px;
            margin-bottom: 50px;
        }

        .footer-link {
            font-size: 16px;
            font-weight: 300;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: opacity 0.3s ease;
        }

        .footer-link:hover {
            opacity: 0.6;
        }

        .footer-copyright {
            color: #888888;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: -0.01em;
        }

        /* Footer neural signals */
        .neural-container-footer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        /* Animations */
        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Neural signal animation */
        @keyframes neuralPulse {
            0% {
                opacity: 0;
            }
            8% {
                opacity: 1;
            }
            80% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        @keyframes convergeVertical {
            0% {
                transform: translateX(-50%) translateY(-15px);
            }
            80% {
                transform: translateX(-50%) translateY(0);
            }
            100% {
                transform: translateX(-50%) translateY(0);
            }
        }

        @keyframes convergeVerticalBottom {
            0% {
                transform: translateX(-50%) translateY(15px);
            }
            80% {
                transform: translateX(-50%) translateY(0);
            }
            100% {
                transform: translateX(-50%) translateY(0);
            }
        }

        @keyframes convergeHorizontal {
            0% {
                transform: translateY(-50%) translateX(-15px);
            }
            80% {
                transform: translateY(-50%) translateX(0);
            }
            100% {
                transform: translateY(-50%) translateX(0);
            }
        }

        @keyframes convergeHorizontalRight {
            0% {
                transform: translateY(-50%) translateX(15px);
            }
            80% {
                transform: translateY(-50%) translateX(0);
            }
            100% {
                transform: translateY(-50%) translateX(0);
            }
        }

        .neural-signal.active {
            animation: neuralPulse 3s ease-out;
        }

        .neural-signal.active .neural-line.vertical-top {
            animation: convergeVertical 3s ease-out;
        }

        .neural-signal.active .neural-line.vertical-bottom {
            animation: convergeVerticalBottom 3s ease-out;
        }

        .neural-signal.active .neural-line.horizontal-left {
            animation: convergeHorizontal 3s ease-out;
        }

        .neural-signal.active .neural-line.horizontal-right {
            animation: convergeHorizontalRight 3s ease-out;
        }

        .neural-signal-dark.active {
            animation: neuralPulse 3s ease-out;
        }

        .neural-signal-dark.active .neural-line-dark.vertical-top {
            animation: convergeVertical 3s ease-out;
        }

        .neural-signal-dark.active .neural-line-dark.vertical-bottom {
            animation: convergeVerticalBottom 3s ease-out;
        }

        .neural-signal-dark.active .neural-line-dark.horizontal-left {
            animation: convergeHorizontal 3s ease-out;
        }

        .neural-signal-dark.active .neural-line-dark.horizontal-right {
            animation: convergeHorizontalRight 3s ease-out;
        }

        /* Responsive adjustments */
        @media (max-width: 1280px) {
            .team-grid {
                gap: 50px 60px;
            }

            .team-image-container {
                width: 240px;
                height: 240px;
            }

            .team-member {
                gap: 25px;
            }

            .menu-content {
                right: 40px;
                top: 100px;
            }

            .menu-item {
                font-size: 28px;
            }
        }
        @media (max-width: 1200px) {
            .team-grid {
                gap: 50px 60px;
            }

            .team-image-container {
                width: 240px;
                height: 240px;
            }

            .team-member {
                gap: 25px;
            }
        }

        @media (max-width: 1024px) {
            .workflow-grid {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .workflow-item .workflow-line-down,
            .workflow-item .workflow-line-horizontal {
                display: none;
            }

            .top-lines {
                display: none;
            }

            .workflow-item .workflow-box {
                margin-left: auto;
                margin-right: auto;
            }

            .hardware-container {
                flex-direction: column;
                gap: 40px;
                align-items: flex-start;
                margin-bottom: 0;
            }

            .model-container {
                width: 100%;
                max-width: 600px;
                min-width: unset;
            }

            .comparison-table {
                font-size: 14px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 15px 20px;
                font-size: 13px;
            }

            .comparison-table th:first-child {
                width: 40%;
            }

            .mission-text {
                font-size: 18px;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .team-member {
                gap: 30px;
            }

            .team-image-container {
                width: 250px;
                height: 250px;
            }

            /* Timeline mobile styles */
            .timeline-container {
                padding: 0;
            }

            .timeline-items {
                flex-direction: column;
                gap: 50px;
                min-height: auto;
                padding-left: 0;
            }

            .timeline-line {
                display: none;
            }

            .timeline-item {
                padding: 0;
                align-items: flex-start;
                width: 100%;
                position: relative;
                padding-left: 15px;
            }

            .timeline-marker {
                width: 30px;
                height: 3px;
                left: -30px;
                top: 10px;
                transform: none;
                position: absolute;
            }

            .timeline-content {
                position: relative;
                padding-left: 0;
                text-align: left;
                padding-right: 0;
            }

            .timeline-content.above,
            .timeline-content.below {
                top: auto;
                bottom: auto;
            }

            .timeline-year {
                font-size: 16px;
            }

            .timeline-description {
                font-size: 14px;
                max-width: 100%;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 60px;
            }

            .team-member {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .team-image-container {
                width: 200px;
                height: 200px;
            }

            .team-info {
                text-align: center;
                padding-top: 0;
            }

            .team-name {
                font-size: 16px;
                margin-bottom: 10px;
                justify-content: center;
            }

            .team-bio {
                font-size: 14px;
            }

            .join-us-button {
                padding: 14px 32px;
                font-size: 15px;
            }

            .menu-item {
                font-size: 22px;
                margin: 18px 0;
            }

            .menu-content {
                right: 30px;
                top: 80px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 40px;
                align-items: center;
            }

            .footer-link {
                font-size: 14px;
            }

            .footer-copyright {
                font-size: 12px;
            }
        }

        @media (max-width: 768px) {

            /* Hide the last practice line on mobile - more specific selector */
            .practices-section .practices-grid .practice-item:last-child .practice-line-last {
                display: none !important;
                visibility: hidden !important;
                height: 0 !important;
                opacity: 0 !important;
            }

            .hero-section {
                padding: 40px 30px;
                padding-bottom: 10vh; /* 10% from bottom */
                display: flex;
                align-items: flex-end; /* Align to bottom */
                justify-content: flex-start;
                position: relative;
                min-height: 100vh;
            }

            .hero-section,
            .hardware-section,
            .comparison-section,
            .mission-section,
            .timeline-section,
            .team-section,
            .footer-section {
                padding: 40px 30px;
                padding-bottom: 40px;
            }

            .timeline-section {
                padding-top: 80px;
            }

            .logo {
                top: 40px;
                left: 30px;
                font-size: 20px;
            }

            .menu-button {
                top: 40px;
                right: 30px;
            }

            .hardware-header,
            .comparison-header,
            .mission-header,
            .timeline-header,
            .team-header {
                font-size: 20px;
            }

            .mission-header,
            .timeline-header,
            .team-header {
                margin-bottom: 40px;
            }

            .hero-section .content-wrapper {
                margin-bottom: 40px;
                margin-top: 0;
                position: relative;
            }

            .hardware-content {
                margin-bottom: 0;
            }

            .hero-title {
                font-size: 24px;
            }

            .hardware-title {
                font-size: 20px;
            }

            .hero-subtitle {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .hardware-text,
            .comparison-subheader {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .comparison-subheader {
                margin-bottom: 30px;
            }

            .neural-signal,
            .neural-signal-dark {
                width: 30px;
                height: 30px;
            }

            .neural-line.vertical-top,
            .neural-line.vertical-bottom,
            .neural-line-dark.vertical-top,
            .neural-line-dark.vertical-bottom {
                height: 15px;
            }

            .neural-line.horizontal-left,
            .neural-line.horizontal-right,
            .neural-line-dark.horizontal-left,
            .neural-line-dark.horizontal-right {
                width: 15px;
            }

            .practices-section {
                padding: 60px 30px;
                padding-top: 10vh; /* Reduced from 15vh */
            }

            .practices-text {
                font-size: 15px;
                margin-bottom: 40px; /* Reduced from 50px */
                padding: 0 20px;
            }

            /* Mobile vertical stacking for practices */
            .practices-grid {
                flex-direction: column;
                gap: 60px;
                align-items: center;
                width: 100%;
            }

            .practice-item {
                flex: 0 0 auto;
                width: 100%;
                margin-bottom: 0;
                position: relative;
            }

            .practice-box {
                width: 120px;
                height: 120px;
                margin: 0 auto;
            }

            .practice-text {
                font-size: 14px;
            }

            /* Mobile vertical lines - REMOVE ALL from practices section */
            .practices-section .practice-line {
                display: none !important;
            }

            .scroll-indicator {
                bottom: 20px;
            }

            .workflow-section {
                padding: 60px 30px;
            }

            /* Mobile vertical stacking for workflow */
            .workflow-grid {
                flex-direction: column;
                gap: 60px;
                align-items: center;
                width: 100%;
            }

            .workflow-item {
                width: 100%;
                margin-bottom: 0;
                position: relative;
            }

            .workflow-box,
            .final-box {
                width: 100%;
                max-width: 320px;
                height: auto;
                min-height: 240px;
                margin: 0 auto;
            }

            /* Mobile vertical lines between workflow boxes */
            .workflow-item .workflow-line-down {
                display: block;
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                width: 3px;
                height: 60px;
                overflow: hidden;
            }

            .workflow-item .workflow-line-horizontal {
                display: none;
            }

            .center-circle {
                margin: 30px auto 30px;
            }

            .center-line-down {
                height: 60px;
                bottom: -60px;
            }

            .workflow-icon,
            .final-icon {
                right: 15px;
                font-size: 20px;
                width: 35px;
                height: 35px;
            }

            .workflow-title {
                font-size: 14px;
            }

            .workflow-text,
            .final-text {
                font-size: 12px;
            }

            /* Mobile hardware section - 3D model position */
            .hardware-section {
                min-height: auto;
                padding-top: 40px;
                display: block;
            }

            .hardware-container {
                display: block;
                gap: 0;
            }

            .hardware-header {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin-bottom: 30px;
                text-align: center;
                width: 100%;
            }

            .hardware-content {
                max-width: 100%;
                text-align: left;
                margin-bottom: 30px;
            }

            .hardware-title {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .hardware-text {
                font-size: 14px;
                line-height: 1.6;
            }

            .hardware-text br {
                display: none;
            }

            .model-container {
                height: 350px;
                margin-top: 0;
                width: 100%;
            }

            .comparison-table-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .comparison-table {
                min-width: 600px;
                font-size: 12px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 10px 15px;
            }

            .comparison-table th:first-child {
                width: 25%;
                font-size: 12px;
            }

            .comparison-table .product-name {
                font-size: 14px;
            }

            /* Mission text left-aligned on mobile */
            .mission-content {
                text-align: left;
            }

            .mission-text {
                font-size: 16px;
                text-align: left;
            }

            .mission-text br {
                display: none;
            }

            .timeline-section {
                padding: 40px 30px;
                padding-top: 80px;
            }

            .timeline-header {
                margin-bottom: 60px;
            }

            .timeline-items {
                flex-direction: column;
                gap: 50px;
                min-height: auto;
                padding-left: 20px;
            }

            .timeline-line {
                display: none;
            }

            .timeline-item {
                padding: 0;
                align-items: flex-start;
                width: 100%;
                position: relative;
            }

            .timeline-marker {
                width: 30px;
                height: 3px;
                left: -20px;
                top: 10px;
                transform: none;
            }

            .timeline-content {
                position: relative;
                padding-left: 20px;
                text-align: left;
                padding-right: 0;
            }

            .timeline-content.above,
            .timeline-content.below {
                top: auto;
                bottom: auto;
            }

            .timeline-year {
                font-size: 16px;
            }

            .timeline-description {
                font-size: 14px;
                max-width: 100%;
            }
        }
