:root{--bg-color: #000;--text-color: #fff;--text-light: #ccc;--accent: #0056ff;--card-bg: #111;--gap: clamp(1rem, 2vw, 2rem);--radius: 10px}*{box-sizing:border-box}body{margin:0;font-family:Arial,sans-serif;background:var(--bg-color);color:var(--text-color);overflow-x:hidden}header{position:fixed;top:0;left:0;right:0;z-index:10;display:flex;justify-content:space-between;align-items:center;padding:1rem var(--gap);background:#000000b3;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);transition:background .3s ease}.header-logo img{width:clamp(35px,5vw,60px);height:auto;border-radius:50%}header nav ul{display:flex;gap:1.5rem;list-style:none;margin:0;padding:0}header nav a{color:var(--text-color);text-decoration:none;font-size:1rem;font-weight:500;transition:color .3s,border-bottom .3s}header nav a:hover{color:var(--accent)}.menu-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;cursor:pointer;width:25px;height:20px}.menu-toggle img{width:20px;height:20px;display:block;object-fit:contain}.menu-toggle div{background-color:var(--text-color);height:3px;border-radius:2px;transition:all .3s ease}.menu-toggle.open div:nth-child(1){transform:rotate(45deg) translateY(7px)}.menu-toggle.open div:nth-child(2){opacity:0}.menu-toggle.open div:nth-child(3){transform:rotate(-45deg) translateY(-7px)}.hero-section{padding:clamp(10rem,12vw,12rem) var(--gap) 0;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-evenly;gap:var(--gap);text-align:left}.hero-content{max-width:600px}.hero-content h1{font-size:clamp(2rem,5vw,3rem);margin-bottom:1rem}.hero-content p{font-size:clamp(1rem,3vw,1.6rem);line-height:1.6;color:var(--text-light)}.hero-section img{width:clamp(400px,40vw,800px);border-radius:var(--radius);height:auto}#project-section{padding:clamp(3rem,6vw,6rem) var(--gap) 0}#project-section h2{font-size:clamp(1.8rem,4vw,3rem);text-align:center;margin-bottom:3rem}.project-container{display:flex;align-items:center;justify-content:space-between;flex-wrap:nowrap;margin:clamp(8rem,10vw,12rem) clamp(4rem,6vw,8rem);gap:clamp(3rem,5vw,8rem)}.project-container.layout-left .project-images{justify-content:flex-end}.project-container.layout-left .project-info{align-items:flex-start;text-align:left}.project-container.layout-right{flex-direction:row-reverse}.project-container.layout-right .project-images{justify-content:flex-start}.project-container.layout-right .project-info{align-items:flex-end;text-align:right}.project-images{display:flex;flex:2;flex-wrap:nowrap;gap:1rem}.project-images img{flex:1 1 0;max-width:calc((100% - 3rem)/4);height:auto;border-radius:var(--radius);object-fit:cover}.project-info{display:flex;flex:1;flex-direction:column;align-items:flex-start}.project-logo{width:clamp(80px,2.5vw,100px);height:auto;object-fit:cover;border-radius:var(--radius)}.project-title{font-size:1.8rem;font-weight:700;margin-bottom:0}.project-description{width:90%;color:var(--text-light);line-height:1.6}.project-download{display:flex;gap:1rem;margin-top:.5rem}.project-download img{width:150px;transition:transform .3s}.project-download img:hover{transform:scale(1.05)}.separator{width:100%;height:50vw;max-height:580px;background:url(/assets/separate-div.svg) no-repeat center/cover}.about{text-align:center;padding:clamp(3rem,6vw,6rem) var(--gap) 0}.about h2{font-size:clamp(1.8rem,4vw,3rem)}.about p{max-width:80%;margin:0 auto 4rem;font-size:clamp(1rem,2.5vw,1.5rem);line-height:1.6;color:var(--text-light)}.team-member-container{display:flex;flex-wrap:wrap;justify-content:center;gap:4rem}.team-member-icon{width:clamp(100px,10vw,150px);height:clamp(100px,10vw,150px);border-radius:50%;object-fit:cover}.team-member-container h3{margin-top:.5rem;font-size:clamp(1rem,2.5vw,1.5rem)}.contact{text-align:center;padding:clamp(3rem,6vw,6rem) var(--gap)}.contact h2{font-size:clamp(1.8rem,4vw,3rem)}.contact p{max-width:80%;margin:0 auto 2rem;font-size:clamp(1rem,2.5vw,1.5rem);line-height:1.6;color:var(--text-light)}.contact a{display:inline-block;padding:.7rem 2.5rem;background:var(--accent);color:var(--text-color);border-radius:var(--radius);text-decoration:none;transition:background .3s}.contact a:hover{background:#003eff}.footer{background:var(--card-bg);padding:clamp(3rem,6vw,5rem) var(--gap);text-align:center}.apps-container{display:flex;justify-content:center;gap:var(--gap);overflow-x:auto;padding:1rem;scroll-snap-type:x mandatory}.app-card{flex:0 0 200px;background:#222;border-radius:var(--radius);padding:1rem 1rem 2rem;box-shadow:0 4px 10px #0006;scroll-snap-align:center;transition:transform .3s,box-shadow .3s}.app-card:hover{transform:translateY(-4px);box-shadow:0 8px 16px #00000080}.app-name{font-weight:700;color:var(--text-color);margin-bottom:.5rem}.app-links{display:flex;flex-direction:column;gap:.3rem}.app-links a{color:var(--text-light);text-decoration:none;font-size:.9rem}.app-links a:hover{color:var(--text-color)}.copyright{color:#888;font-size:.9rem;margin-top:2rem}@media (max-width: 1024px){.project-container{flex-wrap:wrap;justify-content:center;text-align:center}.project-images{flex:1 1 100%}}@media (max-width: 600px){.menu-toggle{display:block;z-index:20}header nav{display:none;position:absolute;top:100%;right:1rem;background:#000000e6;border-radius:var(--radius);padding:1rem;transition:all .3s ease}header nav.active{display:block}header nav ul{display:flex;flex-direction:column;gap:1rem}header nav a{font-size:1.2rem}.hero-section{text-align:center}.hero-section img{max-width:80%}.project-container.layout-left .project-info,.project-container.layout-right .project-info{align-items:center;text-align:center}.project-images{flex-wrap:wrap;justify-content:center;gap:1rem}.project-images img{flex:1 1 100%;max-width:80%;margin:0 auto;display:block}.team-member-container,.apps-container{display:grid;grid-template-columns:repeat(2,1fr)}}._body_joj6e_1{min-height:100vh;overflow-x:hidden;padding:0;margin:0;line-height:1.6;font-size:16px;color:#333;background-color:#f9f9f9;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif}._container_joj6e_14{max-width:1200px;background-color:#f9f9f9;margin:40px auto;padding:0 1rem}._hero_joj6e_21{text-align:center;padding:3rem 0;background-color:#fff;margin-bottom:2rem;border-radius:8px;box-shadow:0 2px 4px #0000001a}._hero_joj6e_21 h1{font-size:2.5rem;color:#2c3e50;margin-bottom:1rem}._hero_joj6e_21 p{color:#666;font-size:1.2rem}._faqSection_joj6e_41{background:#fff;padding:2rem;border-radius:8px;margin-top:2rem;text-align:left;box-shadow:0 2px 4px #0000001a}._faqItem_joj6e_50{margin-bottom:1.5rem}._faqItem_joj6e_50 h3{color:#2c3e50;margin-bottom:.5rem;font-size:1.2rem}._faqItem_joj6e_50 p{color:#666}._contactForm_joj6e_64{background:#fff;padding:2rem;border-radius:8px;margin-top:2rem;text-align:left;box-shadow:0 2px 4px #0000001a}._contactForm_joj6e_64 p{color:#000;font-weight:500}._formGroup_joj6e_78{margin-bottom:1rem}._formGroup_joj6e_78 label{display:block;margin-bottom:.5rem;color:#2c3e50;text-align:left}._formGroup_joj6e_78 input,._formGroup_joj6e_78 textarea{width:100%;padding:.5rem;border:1px solid #ddd;border-radius:4px;font-size:1rem;resize:vertical;text-align:left}._button_joj6e_109{background-color:#3498db;color:#fff;padding:.8rem 1.5rem;border:none;border-radius:4px;cursor:pointer;font-size:1rem;transition:background-color .3s ease;display:inline-block;text-align:left;margin-left:0}._button_joj6e_109:hover{background-color:#2980b9}._footer_joj6e_127{text-align:center;padding:2rem;background-color:#2c3e50;color:#fff}._footer_joj6e_127 p{color:#fff;font-size:1.2rem}:root{font-family:Inter,system-ui,Avenir,Helvetica,Arial,sans-serif;line-height:1.5;font-weight:400;color-scheme:light dark;color:#ffffffde;background-color:#242424;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{font-weight:500;color:#646cff;text-decoration:inherit}a:hover{color:#535bf2}body{margin:0;display:flex;place-items:center;min-width:320px;min-height:100vh}h1{font-size:3.2em;line-height:1.1}button{border-radius:8px;border:1px solid transparent;padding:.6em 1.2em;font-size:1em;font-weight:500;font-family:inherit;background-color:#1a1a1a;cursor:pointer;transition:border-color .25s}button:hover{border-color:#646cff}button:focus,button:focus-visible{outline:4px auto -webkit-focus-ring-color}@media (prefers-color-scheme: light){:root{color:#213547;background-color:#fff}a:hover{color:#747bff}button{background-color:#f9f9f9}}
