/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;
    cursor: default;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 48px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(5,5,5,0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: padding 0.3s;
}
nav.scrolled { padding: 14px 48px; }
nav .logo {
    font-family: 'Space Mono', monospace;
    font-size: 16px; font-weight: 700; letter-spacing: 2px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: #fff; text-decoration: none; font-size: 13px;
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: #00d4ff;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { width: 100%; }
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-toggle span {
    display: block; width: 24px; height: 2px; background: #fff;
    transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(5,5,5,0.97); backdrop-filter: blur(24px);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 32px;
    z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
    color: #fff; text-decoration: none; font-size: 28px;
    font-weight: 600; transition: color 0.3s;
}
.mobile-menu a:hover { color: #00d4ff; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 80px;
    position: relative; overflow: hidden;
}
#networkCanvas {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 0;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1400px; width: 100%;
    margin: 0 auto;
}
.hero-split {
    display: flex; align-items: center; justify-content: space-between;
    gap: 60px;
}
.hero-left { flex: 1; }
.hero-right { flex-shrink: 0; }
.hero-photo-wrapper {
    width: 280px; height: 280px;
    border-radius: 24px; overflow: hidden;
    border: 2px solid rgba(0,212,255,0.15);
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-photo-wrapper::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.08), transparent 60%);
    pointer-events: none;
}
.hero-photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(15%);
    transition: filter 0.4s, transform 0.4s;
}
.hero-photo-wrapper:hover .hero-photo {
    filter: grayscale(0%);
    transform: scale(1.03);
}
.hero .tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 13px; color: #00d4ff;
    margin-bottom: 24px; letter-spacing: 1px;
}
.hero .tag .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #00d4ff;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -3px; margin-bottom: 16px;
    white-space: nowrap;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(30px); opacity: 0;
}
@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }
.hero-tagline {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 400; color: #ddd;
    margin-bottom: 16px; letter-spacing: -0.5px;
    animation: fadeIn 1s 0.3s forwards; opacity: 0;
}
.gradient {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7, #ff2d87);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 16px; color: #bbb; max-width: 500px;
    line-height: 1.7; font-weight: 300;
    animation: fadeIn 1s 0.5s forwards; opacity: 0;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero-buttons {
    display: flex; gap: 14px; margin-top: 28px;
    animation: fadeIn 1s 0.7s forwards; opacity: 0;
}
/* ===== PIPELINE SECTION ===== */
.pipeline-section {
    margin-top: 48px;
    padding: 32px 36px;
    background: rgba(0,212,255,0.02);
    border: 1px solid rgba(0,212,255,0.08);
    border-radius: 16px;
    animation: fadeIn 1s 0.9s forwards; opacity: 0;
}
.pipeline-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: #00d4ff; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 20px;
}
.pipeline {
    display: flex; align-items: center; gap: 6px;
    justify-content: space-between;
}
.pipe-node { flex: 1; text-align: center; }
.pipe-connector { flex: 0 0 48px; }
.pipe-node {
    padding: 16px 36px; border-radius: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 14px; letter-spacing: 2px;
    border: 1px solid #333; color: #ddd;
    background: rgba(255,255,255,0.03);
    position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.pipe-node::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
.pipe-node:nth-child(3)::before { animation-delay: 0.5s; }
.pipe-node:nth-child(5)::before { animation-delay: 1s; }
.pipe-node:nth-child(7)::before { animation-delay: 1.5s; }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
.pipe-node:hover {
    border-color: #00d4ff; color: #00d4ff;
    box-shadow: 0 0 30px rgba(0,212,255,0.15);
    transform: translateY(-2px);
}
.pipe-connector {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, #333, #444, #333);
    position: relative;
}
.pipe-connector::after {
    content: ''; position: absolute;
    width: 8px; height: 8px;
    background: #00d4ff; border-radius: 50%;
    top: -3px; left: 0;
    animation: travel 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0,212,255,0.5);
}
.pipe-connector:nth-child(4)::after { animation-delay: 0.5s; }
.pipe-connector:nth-child(6)::after { animation-delay: 1s; }
@keyframes travel {
    0% { left: 0; opacity: 0; } 20% { opacity: 1; }
    80% { opacity: 1; } 100% { left: calc(100% - 8px); opacity: 0; }
}
.scroll-hint {
    position: absolute; bottom: 32px; left: 80px;
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; color: #666; letter-spacing: 2px;
    text-transform: uppercase; z-index: 2;
    animation: fadeIn 1s 1.5s forwards; opacity: 0;
}
.scroll-line {
    width: 32px; height: 1px; background: #444;
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: #00d4ff;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { left: -100%; } 50% { left: 0; } 100% { left: 100%; } }

/* ===== SECTIONS (tighter spacing) ===== */
.section { padding: 80px 80px; position: relative; }
.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: #888; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 40px;
    display: flex; align-items: center; gap: 16px;
}
.section-label::before {
    content: ''; width: 32px; height: 1px; background: #888;
}

/* ===== ABOUT ===== */
.about-content {
    display: flex; flex-direction: column; gap: 32px;
    max-width: 1400px;
}
.about-text {
    font-size: 20px; font-weight: 300; line-height: 1.7;
    color: #ccc; letter-spacing: -0.2px;
}
.about-text strong { color: #fff; font-weight: 500; }
.about-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat {
    padding: 24px;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    transition: all 0.4s;
}
.stat:hover {
    border-color: #2a2a2a;
    background: rgba(255,255,255,0.02);
}
.stat .value {
    font-size: 32px; font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.stat .label { font-size: 12px; color: #bbb; letter-spacing: 0.5px; }

/* ===== EXPERIENCE ===== */
.timeline { max-width: 1400px; }
.timeline-item {
    display: grid; grid-template-columns: 180px 1fr;
    gap: 48px; padding: 36px 0;
    border-bottom: 1px solid #151515;
    transition: all 0.4s;
    position: relative;
}
.timeline-item::before {
    content: ''; position: absolute; left: 200px; top: 0;
    width: 1px; height: 100%; background: #151515;
}
.timeline-item:hover { padding-left: 12px; }
.timeline-item .period {
    font-family: 'Space Mono', monospace;
    font-size: 13px; color: #aaa; padding-top: 6px;
}
.timeline-item .role-title {
    font-size: 24px; font-weight: 600; margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.timeline-item .company-name {
    font-size: 14px; color: #00d4ff; margin-bottom: 10px;
}
.timeline-item .desc {
    font-size: 15px; color: #bbb; line-height: 1.7; font-weight: 300;
}

/* ===== PROJECTS ===== */
.projects-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    max-width: 1400px;
}
.project-card {
    padding: 36px;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.project-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(123,47,247,0.05));
    opacity: 0; transition: opacity 0.5s;
}
.project-card:hover::before { opacity: 1; }
.project-card:hover {
    border-color: #2a2a2a;
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.project-card.featured {
    grid-column: 1 / -1;
    border-color: rgba(0,212,255,0.15);
    background: rgba(0,212,255,0.02);
}
.project-card .card-company {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: #aaa; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 12px;
}
.project-card h3 {
    font-size: 22px; font-weight: 600; margin-bottom: 6px;
    letter-spacing: -0.5px;
    position: relative; z-index: 1;
}
.project-card .card-role {
    font-size: 13px; color: #00d4ff; margin-bottom: 12px;
    position: relative; z-index: 1;
}
.project-card p {
    font-size: 14px; color: #bbb; line-height: 1.7;
    position: relative; z-index: 1;
}
.project-card .card-number {
    position: absolute; top: 20px; right: 28px;
    font-family: 'Space Mono', monospace;
    font-size: 56px; font-weight: 700;
    color: rgba(255,255,255,0.03);
}
.card-badge {
    display: inline-block; margin-top: 12px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(0,212,255,0.1);
    color: #00d4ff;
    border: 1px solid rgba(0,212,255,0.2);
    position: relative; z-index: 1;
}

/* ===== EXPERTISE ===== */
.expertise-row {
    display: flex; gap: 12px; flex-wrap: wrap;
    max-width: 1400px;
}
.skill-chip {
    padding: 12px 24px;
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    font-size: 14px; font-weight: 400;
    color: #bbb;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.skill-chip:hover {
    border-color: #00d4ff; color: #00d4ff;
    background: rgba(0,212,255,0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,212,255,0.1);
}

/* ===== EDUCATION ===== */
.edu-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 1400px;
}
.edu-card {
    padding: 32px;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.edu-card:hover {
    border-color: #2a2a2a;
    transform: translateY(-3px);
    background: rgba(255,255,255,0.02);
}
.edu-icon { font-size: 24px; margin-bottom: 16px; }
.edu-degree {
    font-size: 18px; font-weight: 600; margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.edu-school { font-size: 14px; color: #00d4ff; margin-bottom: 6px; }
.edu-detail { font-size: 13px; color: #999; }

/* ===== BLOG ===== */
.blog-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    max-width: 1400px;
}
.blog-card {
    padding: 32px;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    text-decoration: none; color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
.blog-card:hover {
    border-color: #2a2a2a;
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.blog-card .blog-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: #00d4ff; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 12px;
}
.blog-card h3 {
    font-size: 20px; font-weight: 600; margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.blog-card p {
    font-size: 14px; color: #aaa; line-height: 1.7; margin-bottom: 12px;
}
.blog-card .blog-meta {
    font-size: 12px; color: #777;
    font-family: 'Space Mono', monospace;
}

/* ===== BEYOND WORK ===== */
.beyond-content { max-width: 900px; }
.beyond-text {
    font-size: 20px; font-weight: 300; line-height: 1.7;
    color: #aaa;
}
.beyond-text strong { color: #ddd; font-weight: 500; }

/* ===== CONTACT ===== */
.contact-section {
    min-height: 50vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 80px 80px;
}
.contact-section h2 {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700; letter-spacing: -2px;
    margin-bottom: 20px;
}
.contact-section p {
    font-size: 17px; color: #bbb; max-width: 420px;
    line-height: 1.7; margin-bottom: 36px;
}
.contact-buttons { display: flex; gap: 14px; margin-bottom: 24px; }
.recommendations-link {
    font-size: 14px; color: #888;
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}
.recommendations-link:hover {
    color: #00d4ff;
    border-bottom-color: #00d4ff;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 32px; border-radius: 50px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
}
.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,212,255,0.25);
}
.btn-outline { border: 1px solid #333; color: #bbb; }
.btn-outline:hover {
    border-color: #fff; color: #fff;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer { padding: 32px 80px; border-top: 1px solid #151515; }
.footer-content {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto;
}
.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-logo {
    font-family: 'Space Mono', monospace;
    font-size: 14px; font-weight: 700; letter-spacing: 2px;
}
.footer-copy { font-size: 13px; color: #666; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
    font-size: 13px; color: #666; text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: #00d4ff; }
.footer-right { font-size: 13px; color: #444; }

/* ===== PIPELINE DETAIL BOX ===== */
.pipe-detail-box {
    margin-top: 20px;
    font-size: 15px; color: #ccc; line-height: 1.7;
    max-width: 650px;
    min-height: 28px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 300;
}
.pipe-detail-box.visible { opacity: 1; }
.pipe-node.active {
    border-color: #00d4ff; color: #00d4ff;
    box-shadow: 0 0 30px rgba(0,212,255,0.15);
}

/* ===== PROJECT CARD CTA ===== */
.card-cta {
    font-size: 13px; color: #555;
    margin-top: 14px;
    transition: color 0.3s;
    position: relative; z-index: 1;
}
.project-card:hover .card-cta { color: #00d4ff; }
.project-card[data-project] { cursor: pointer; }

/* ===== PROJECT MODAL ===== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    padding: 24px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 48px;
    max-width: 680px; width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none;
    color: #666; font-size: 20px; cursor: pointer;
    transition: color 0.3s;
    padding: 4px 8px;
}
.modal-close:hover { color: #fff; }
.modal-company {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: #00d4ff; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 12px;
}
.modal-title {
    font-size: 28px; font-weight: 700; margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.modal-role {
    font-size: 14px; color: #888; margin-bottom: 24px;
}
.modal-body {
    font-size: 15px; color: #bbb; line-height: 1.8;
}
.modal-body h4 {
    font-size: 14px; color: #fff; margin: 20px 0 8px;
    text-transform: uppercase; letter-spacing: 1px;
    font-family: 'Space Mono', monospace;
}
.modal-body ul {
    list-style: none; padding: 0;
}
.modal-body ul li {
    padding: 4px 0 4px 16px;
    position: relative;
}
.modal-body ul li::before {
    content: '→'; position: absolute; left: 0;
    color: #00d4ff;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-stats { grid-template-columns: 1fr 1fr; }
    .edu-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 0 24px; }
    .hero-split { flex-direction: column; gap: 32px; text-align: center; }
    .hero-right { order: -1; }
    .hero-photo-wrapper { width: 180px; height: 180px; margin: 0 auto; }
    .hero h1 { letter-spacing: -1.5px; }
    .hero-buttons { justify-content: center; }
    .pipeline { flex-wrap: wrap; gap: 8px; justify-content: center; }
    .pipe-connector { width: 16px; }
    .scroll-hint { left: 24px; }

    .section { padding: 60px 24px; }
    .about-text { font-size: 18px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat { padding: 18px; }
    .stat .value { font-size: 24px; }

    .timeline-item {
        grid-template-columns: 1fr; gap: 6px; padding: 28px 0;
    }
    .timeline-item::before { display: none; }
    .timeline-item .role-title { font-size: 20px; }

    .projects-grid { grid-template-columns: 1fr; }
    .project-card { padding: 28px; }
    .project-card.featured { grid-column: auto; }

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

    .expertise-row { gap: 8px; }
    .skill-chip { padding: 10px 18px; font-size: 13px; }

    .contact-section { padding: 60px 24px; }
    .contact-buttons { flex-direction: column; width: 100%; max-width: 280px; }
    .btn { text-align: center; }

    footer { padding: 20px 24px; }
    .footer-content { flex-direction: column; gap: 12px; text-align: center; }
    .footer-left { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 40px; letter-spacing: -1px; }
    .hero-tagline { font-size: 18px; }
    .hero-sub { font-size: 15px; }
    .hero-photo-wrapper { width: 150px; height: 150px; }
    .pipe-node { padding: 8px 12px; font-size: 10px; }
    .pipe-connector { width: 10px; }
}
