@import"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:color-mix(in srgb,var(--main-bg) 85%,transparent);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-bottom:1px solid var(--second-bg);box-sizing:border-box;padding:0 1.5%;display:flex;font-size:22px;height:60px;align-items:center;padding-top:env(safe-area-inset-top);height:calc(60px + env(safe-area-inset-top))}header .logotype{margin-right:auto}header .logotype span{color:var(--second-text)}header .links{display:flex;align-items:center}header .links a{margin-right:20px;display:inline-block;font-size:1rem;transition:transform .2s ease,color .15s ease}header .links a:hover{transform:translateY(-3px)}header .header__right{display:flex;align-items:center;gap:.25rem}header .theme-toggle{background:none;border:none;color:var(--primary-text);cursor:pointer;display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;transition:background-color .3s ease,transform .3s cubic-bezier(.4,0,.2,1)}header .theme-toggle:hover{background-color:var(--second-bg);transform:scale(1.1)}header .theme-toggle:active{transform:scale(.9)}header .theme-toggle svg{animation:rotateIcon .5s cubic-bezier(.4,0,.2,1)}header .burger{display:none;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:40px;height:40px;border:none;background:none;cursor:pointer;padding:0;border-radius:8px;transition:background-color .2s ease}header .burger span{display:block;width:22px;height:2px;background:var(--primary-text);border-radius:2px;transition:transform .3s cubic-bezier(.4,0,.2,1),opacity .3s ease;transform-origin:center}header .burger--open span:nth-child(1){transform:translateY(7px) rotate(45deg)}header .burger--open span:nth-child(2){opacity:0;transform:scaleX(0)}header .burger--open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}header .burger:hover{background-color:var(--second-bg)}body{padding-top:calc(60px + env(safe-area-inset-top))!important}.mobile-menu{position:fixed;top:calc(60px + env(safe-area-inset-top));right:0;bottom:0;width:min(300px,85vw);z-index:999;background:var(--main-bg);border-left:1px solid var(--second-bg);transform:translate(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;padding:2rem 1.5rem;padding-bottom:calc(2rem + env(safe-area-inset-bottom));box-sizing:border-box}.mobile-menu--open{transform:translate(0)}.mobile-menu__nav{display:flex;flex-direction:column;gap:.5rem}.mobile-menu__link{display:block;font-size:1.25rem;font-weight:700;color:var(--primary-text);padding:.75rem 1rem;border-radius:12px;text-decoration:none;transition:background-color .2s ease}.mobile-menu__link:hover{background-color:var(--second-bg)}.mobile-menu__backdrop{position:fixed;inset:0;z-index:998;background:#0000004d;backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px)}@keyframes rotateIcon{0%{transform:rotate(-180deg) scale(.5);opacity:0}to{transform:rotate(0) scale(1);opacity:1}}@media(max-width:900px){header{font-size:18px;padding:0 1rem;padding-top:env(safe-area-inset-top)}header .links a{margin-right:14px;font-size:.92rem}}@media(max-width:640px){header .links{display:none}header .burger{display:flex}}section.guides{width:100%;min-height:calc(100vh - 60px);padding:60px 20px;box-sizing:border-box}@media(max-width:640px){section.guides{padding:40px 16px}}.guides__container{max-width:800px;width:100%;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:3rem}.guides__header{display:flex;flex-direction:column;align-items:center;gap:1rem;text-align:center}.guides__header h1{font-size:3.5rem;font-weight:800;color:var(--primary-text);margin:0;letter-spacing:-.04em}@media(max-width:640px){.guides__header h1{font-size:2.4rem}}@media(max-width:380px){.guides__header h1{font-size:2rem}}.guides__line{width:80px;height:4px;background:var(--primary-text);border-radius:4px}.guides__list{display:flex;flex-direction:column;gap:1.5rem;width:100%}.guides-card{display:flex;flex-direction:column;gap:1rem;padding:1.8rem;border-radius:20px;border:1px solid var(--second-bg);background:var(--main-bg);transition:all .3s cubic-bezier(.4,0,.2,1);text-decoration:none;align-items:center;text-align:center}@media(max-width:640px){.guides-card{padding:1.4rem 1.2rem;border-radius:16px}}.guides-card .guides-card__top{display:flex;flex-direction:column;align-items:center;gap:.5rem}.guides-card .guides-card__top h3{margin:0;color:var(--primary-text);font-size:1.4rem;font-weight:800;line-height:1.3}.guides-card .guides-card__date{color:var(--second-text);font-size:.95rem;opacity:.8;font-weight:500}.guides-card .guides-card__tags{display:flex;gap:.6rem;flex-wrap:wrap;justify-content:center}.guides-card .tag{background:var(--second-bg);border-radius:999px;padding:.3rem .8rem;font-size:.85rem;font-weight:600;color:var(--primary-text)}.guides-card:hover{background:var(--second-bg);transform:translateY(-4px);box-shadow:0 10px 30px -10px #0000001a}section.guides-post .guides__container{align-items:stretch}section.guides-post .guides__header{align-items:flex-start;text-align:left}.guides-post__nav{margin-bottom:0rem;display:flex}.guides-post__back{display:inline-flex;align-items:center;gap:.5rem;color:var(--primary-text);font-weight:600;border:1px solid var(--second-bg);border-radius:999px;padding:.5rem 1rem;background:var(--main-bg);transition:all .2s ease;text-decoration:none}.guides-post__back:hover{background:var(--second-bg)}.guides-post__meta{display:flex;gap:1rem;color:var(--second-text);font-size:1rem;font-weight:500}.guides-post__tags{color:var(--primary-text)}.guides-post__content{border:1px solid var(--second-bg);border-radius:20px;padding:2.5rem;background:var(--main-bg);margin-top:1rem}@media(max-width:640px){.guides-post__content{padding:1.4rem 1.2rem;border-radius:16px}}.guides-post__content h1,.guides-post__content h2,.guides-post__content h3{color:var(--primary-text);margin:2rem 0 1rem;font-weight:800}.guides-post__content h1{font-size:2.2rem}.guides-post__content h2{font-size:1.8rem}.guides-post__content h3{font-size:1.4rem}.guides-post__content p{color:var(--second-text);line-height:1.8;margin:1rem 0;font-size:1.05rem}.guides-post__content a{color:var(--primary-text);text-decoration:underline;text-underline-offset:4px}.guides-post__content pre{background:var(--second-bg);border-radius:12px;padding:1.25rem;overflow:auto;border:1px solid var(--second-bg);margin:1.5rem 0}.guides-post__content code{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-weight:600;font-size:.9em}.guides-post__content blockquote{border-left:4px solid var(--primary-text);padding-left:1.5rem;color:var(--second-text);font-style:italic;margin:1.5rem 0}.guides-post__content ul,.guides-post__content ol{margin:1rem 0 1rem 1.5rem;color:var(--second-text);line-height:1.8;font-size:1.05rem}.guides-post__content ul li,.guides-post__content ol li{margin-bottom:.5rem}section.notfound{display:flex;align-items:center;justify-content:center;height:calc(100vh - 60px);margin:0;padding:0;overflow:hidden;box-sizing:border-box}.notfound__container{max-width:720px;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;text-align:center;padding:2rem}.notfound__container h1{font-size:5rem;font-weight:800;margin:0;color:var(--primary-text);letter-spacing:-.03em}@media(max-width:640px){.notfound__container h1{font-size:3.5rem}}.notfound__container p{margin:0;color:var(--second-text);font-size:1.25rem;line-height:1.6;font-weight:500}@media(max-width:640px){.notfound__container p{font-size:1.05rem}}.notfound__actions{display:flex;gap:.8rem;flex-wrap:wrap;justify-content:center;margin-top:1rem}.notfound__link{border:1px solid var(--second-bg);border-radius:999px;padding:.6rem 1.2rem;background:transparent;color:var(--primary-text);font-weight:600;transition:all .2s ease;text-decoration:none}.notfound__link:hover{background:var(--primary-text);border-color:var(--primary-text);color:var(--main-bg)}section.about{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:80px 20px}@media(max-width:640px){section.about{padding:60px 16px;min-height:auto}}.about__container{display:flex;flex-direction:column;align-items:center;gap:4rem;max-width:1000px;width:100%}@media(max-width:768px){.about__container{gap:3rem}}@media(max-width:640px){.about__container{gap:2.5rem}}.about__top-section{display:flex;align-items:center;gap:4rem;width:100%}@media(max-width:768px){.about__top-section{flex-direction:column;text-align:center;gap:2rem}}.about__images{position:relative;flex:0 0 300px;height:300px}@media(max-width:768px){.about__images{flex:0 0 240px;height:240px}}@media(max-width:480px){.about__images{flex:0 0 200px;height:200px}}.about__bg-image{position:absolute;top:15px;left:15px;width:100%;height:100%;z-index:1}.about__bg-image img{width:100%;height:100%;object-fit:cover;border-radius:20px;opacity:.4;filter:blur(8px);transition:all .4s ease}.about__main-image{position:relative;width:100%;height:100%;z-index:2;transition:all .4s ease}.about__main-image img{width:100%;height:100%;object-fit:cover;border-radius:20px;box-shadow:0 10px 30px #0000001a;transition:all .4s ease}.about__main-image:hover{transform:translateY(-5px)}.about__main-image:hover img{box-shadow:0 15px 40px #0003}.about__main-image:hover~.about__bg-image img{opacity:.6;filter:blur(12px)}.about__intro{flex:1;display:flex;flex-direction:column;gap:1.5rem}@media(max-width:768px){.about__intro{align-items:center}}.about__header h1{font-size:3rem;font-weight:800;color:var(--primary-text);margin:0 0 .5rem;letter-spacing:-.03em}@media(max-width:640px){.about__header h1{font-size:2.2rem}}@media(max-width:380px){.about__header h1{font-size:1.9rem}}.about__line{width:60px;height:4px;background:var(--primary-text);border-radius:2px}@media(max-width:768px){.about__line{margin:0 auto}}.about__text{display:flex;flex-direction:column;gap:1rem}.about__text p{font-size:1.15rem;line-height:1.6;color:var(--second-text);margin:0}@media(max-width:640px){.about__text p{font-size:1rem}}.about__text p strong{font-weight:700;color:var(--primary-text)}.about__stack-section{width:100%;display:flex;flex-direction:column;gap:2rem}.about__stack-header{text-align:center;font-size:2rem;font-weight:800;color:var(--primary-text);margin-bottom:1rem}@media(max-width:640px){.about__stack-header{font-size:1.6rem}}.about__technologies{display:flex;flex-direction:column;gap:2rem}.tech-category{display:flex;flex-direction:column;gap:1rem}.tech-category__title{font-size:1.1rem;font-weight:700;color:var(--primary-text);text-transform:uppercase;letter-spacing:.1em;margin:0;opacity:.7;border-bottom:1px solid var(--second-bg);padding-bottom:.5rem}@media(max-width:580px){.tech-category__title{text-align:center}}.tech-category__items{display:flex;gap:1rem;flex-wrap:wrap}@media(max-width:580px){.tech-category__items{justify-content:center}}.tech-category__items.main-grid{width:100%;justify-content:center;max-width:900px;margin:0 auto}.tech-item{position:relative;display:flex;align-items:center;gap:.6rem;padding:.6rem 1.2rem;background:transparent;border-radius:12px;border:1px solid var(--second-bg);transition:all .3s cubic-bezier(.4,0,.2,1);cursor:pointer}@media(max-width:580px){.tech-item{padding:.5rem 1rem}}.tech-item .tooltip{position:absolute;bottom:calc(100% + 10px);left:50%;transform:translate(-50%) translateY(5px);background:var(--primary-text);color:var(--main-bg);padding:.6rem 1rem;border-radius:8px;font-size:.85rem;font-weight:500;white-space:nowrap;opacity:0;visibility:hidden;transition:all .2s ease-out;z-index:10;pointer-events:none;box-shadow:0 4px 15px #0000001a}.tech-item .tooltip:after{content:"";position:absolute;top:100%;left:50%;transform:translate(-50%);border-width:5px;border-style:solid;border-color:var(--primary-text) transparent transparent transparent}.tech-item svg{color:var(--primary-text);transition:transform .3s ease;flex-shrink:0}.tech-item span{font-size:.95rem;font-weight:600;color:var(--primary-text);white-space:nowrap}@media(max-width:580px){.tech-item span{font-size:.88rem}}.tech-item:hover{background:var(--second-bg);border-color:transparent;transform:translateY(-2px)}.tech-item:hover .tooltip{opacity:1;visibility:visible;transform:translate(-50%) translateY(0)}.tech-item:hover svg{transform:scale(1.1)}section.contacts{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:80px 20px;box-sizing:border-box}@media(max-width:640px){section.contacts{padding:60px 16px;min-height:auto;align-items:flex-start}}.contacts__container{display:flex;align-items:center;gap:4rem;max-width:1000px;width:100%;margin:0 auto;background:transparent}@media(max-width:860px){.contacts__container{flex-direction:column;align-items:center;text-align:center;gap:2.5rem}}.contacts__image{flex:0 0 320px;height:480px;position:relative}.contacts__image img{width:100%;height:100%;object-fit:cover;border-radius:20px;box-shadow:0 15px 40px #00000026;transition:all .4s ease}.contacts__image:hover img{transform:translateY(-8px);box-shadow:0 20px 50px #0003}@media(max-width:860px){.contacts__image{flex:0 0 auto;width:100%;max-width:280px;height:360px}}@media(max-width:480px){.contacts__image{max-width:220px;height:280px}}.contacts__content{flex:1;display:flex;flex-direction:column;gap:1.5rem;min-width:0}@media(max-width:860px){.contacts__content{align-items:center;width:100%}}@media(max-width:640px){.contacts__content{gap:1.25rem}}.contacts__header h2{font-size:3rem;font-weight:800;color:var(--primary-text);margin:0 0 .5rem;letter-spacing:-.03em}@media(max-width:640px){.contacts__header h2{font-size:2.4rem}}@media(max-width:380px){.contacts__header h2{font-size:2rem}}.contacts__line{width:60px;height:4px;background:var(--primary-text);border-radius:2px}@media(max-width:860px){.contacts__line{margin:0 auto}}.contacts__desc{font-size:1.1rem;line-height:1.6;color:var(--second-text);margin-bottom:.5rem;max-width:480px}@media(max-width:860px){.contacts__desc{text-align:center}}@media(max-width:640px){.contacts__desc{font-size:1rem;max-width:100%}}.contacts__links{display:flex;flex-direction:column;gap:1rem;width:100%}.contact-card{display:flex;align-items:center;gap:1.5rem;padding:1.2rem 1.8rem;border-radius:16px;border:2px solid transparent;background:transparent;transition:all .3s cubic-bezier(.4,0,.2,1);text-decoration:none;width:100%;box-sizing:border-box}.contact-card .contact-card__icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:52px;height:52px;border-radius:12px;background:var(--second-bg);color:var(--primary-text);transition:all .3s ease}.contact-card .contact-card__info{display:flex;flex-direction:column;gap:.25rem;min-width:0;text-align:left}.contact-card .contact-card__info span{font-size:.8rem;color:var(--second-text);text-transform:uppercase;letter-spacing:.08em;font-weight:600}.contact-card .contact-card__info strong{font-size:1.1rem;color:var(--primary-text);font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.contact-card:hover{background:var(--second-bg);border-color:var(--primary-text);transform:translateY(-4px);box-shadow:0 10px 30px #00000014}.contact-card:hover .contact-card__icon{background:var(--primary-text);color:var(--main-bg);transform:scale(1.1) rotate(-5deg)}@media(max-width:860px){.contact-card{max-width:400px;margin:0 auto}}@media(max-width:640px){.contact-card{max-width:100%;padding:1rem 1.2rem;gap:1rem}}@media(max-width:380px){.contact-card{padding:.9rem 1rem;gap:.75rem}.contact-card .contact-card__icon{width:44px;height:44px}.contact-card .contact-card__info strong{font-size:1rem}}.badge{display:inline-flex;align-items:center;gap:.4em;background:var(--second-bg);color:var(--primary-text);border-radius:16px;padding:.25em .75em;font-size:.95em;font-weight:600;box-shadow:0 2px 8px #0000000a;border:1px solid var(--primary-text);transition:background .2s,color .2s,box-shadow .2s}.badge__icon{font-size:1.1em;display:flex}.badge__label{letter-spacing:.02em}.badge:hover{background:var(--primary-text);color:var(--main-bg);box-shadow:0 4px 16px #00000014}section{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;padding:50px 0}section.home{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:2rem}.home__center{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem}.home__content{display:flex;flex-direction:column;align-items:center;gap:1rem;max-width:500px;text-align:center}.home__content h1{font-size:2.5rem;line-height:1.2}.home__content p{font-size:1.125rem;line-height:1.5;color:var(--second-text)}.home__content .buttons{display:flex;gap:1rem}.home__content .buttons a{padding:1rem 1.5rem;border:2px solid var(--primary-text);border-radius:6px;transition:all .45s ease}.home__content .buttons a.primary{background-color:var(--primary-text);color:var(--main-bg)}.home__content .buttons a.primary:hover{background-color:var(--main-bg);color:var(--primary-text)}.home__content .buttons a:hover{background-color:var(--primary-text);color:var(--main-bg)}.home__left-image,.home__right-image{flex:0 0 140px;max-width:140px;width:100%}.home__left-image img,.home__right-image img{width:100%;height:auto;border-radius:8px}.home__left-image img{transform:scaleX(-1);transition:all .45s ease}.home__left-image img:hover{transition:all .45s ease;transform:scaleX(-1) scale(1.1) rotate(5deg)}.home__right-image img{transition:all .45s ease}.home__right-image img:hover{transition:all .45s ease;transform:scale(1.1) rotate(5deg)}.home__image{flex:0 0 200px;max-width:400px}.home__image img{width:100%;height:auto}.home__image img{outline:4px solid var(--primary-text);border:4px solid var(--main-bg);animation:morph 8s infinite;width:100%;max-width:400px;height:auto;transition:all .45s ease}.home__image img:hover{animation-play-state:paused;transform:scale(1.05);transition:all .45s ease}@media(max-width:900px){section.home{gap:1.5rem;padding:40px 20px}.home__left-image,.home__right-image{flex:0 0 110px;max-width:110px}.home__image{flex:0 0 180px;max-width:220px}.home__content h1{font-size:2rem}.home__content p{font-size:1rem}}@media(max-width:640px){section.home{flex-direction:column;padding:40px 20px}.home__left-image,.home__right-image{display:none}.home__image{flex:0 0 auto;max-width:220px}.home__content{max-width:100%}.home__content h1{font-size:2.2rem}.home__content .buttons{flex-wrap:wrap;justify-content:center}.home__content .buttons a{padding:.75rem 1.2rem;font-size:.95rem}}@media(max-width:380px){.home__content h1{font-size:1.8rem}.home__content p{font-size:.95rem}}:root{--main-bg: #ffffff;--second-bg: #ececec;--primary-text: #000000;--second-text: #1a1a1a}:root.inverted{--main-bg: #000000;--second-bg: #1a1a1a;--primary-text: #ffffff;--second-text: #ececec}*{margin:0;padding:0;transition:background-color .4s ease,border-color .4s ease,box-shadow .4s ease,color .1s ease}html{overflow-x:hidden;max-width:100vw}body{font-family:Inter,sans-serif;font-optical-sizing:auto;font-weight:600;font-style:normal;background:var(--main-bg);color:var(--primary-text);overflow-x:hidden;max-width:100vw}body a{text-decoration:none;color:var(--primary-text)}body a secondary{color:var(--second-text)}@keyframes morph{0%{border-radius:20% 80% 40% 60%/60% 40% 20% 80%}50%{border-radius:80% 20% 60% 40%/40% 60% 80% 20%}to{border-radius:20% 80% 40% 60%/60% 40% 20% 80%}}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--main-bg)}::-webkit-scrollbar-thumb{background:var(--second-bg);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--primary-text)}section{scroll-margin-top:calc(60px + env(safe-area-inset-top))}@media(max-width:640px){::-webkit-scrollbar{width:4px}}
